芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/rentandbuyrealty.com/resources/views/article/index.blade.php
@extends('layouts.main') @section('title') {{ __('Article') }} @endsection @section('page-title')
@yield('title')
@csrf
Add Article
@endsection @section('content')
@foreach ($articles as $key => $value)
{{ $value->title }}
@php echo Str::substr(strip_tags($value->description), 0, 150) . '...'; @endphp
Posted On
{{ date('d M Y', strtotime($value->created_at)) }}
@endforeach
@if (count($articles)>12)
@csrf
Show More
@endif
@endsection @section('script') @endsection