@extends('dashboard.layouts.master') @section('title') @endsection @section('css') @include('dashboard.layouts.css') @endsection @section('body')
@if ($errors->any())
@endif
@can('admin.blogs.create') @endcan

@foreach($items as $blog) @endforeach
# العنوان المحتوى عنوان المدونه التي ينتمي لها تاريخ الإنشاء الصوره الصوره الداخليه العمليـــــات
{{$i}} {{$blog->Title}} {!! Str::limit($blog->Content, 20) !!} @if($blog->id_blog) @php $blog_sel = App\Models\dashboard\Blog::where('id', $blog->id_blog)->first(); @endphp @if($blog_sel) {{ $blog_sel->Title }} @else A/N @endif @else A/N @endif {{$blog->created_at->format('Y-m-d')}} @if ($blog->image) @else No image available @endif @if ($blog->imageInside) @else No image available @endif @can('admin.blogs.edit') @endcan @can('admin.blogs.delete') @endcan
@endsection @section('js') @include('dashboard.layouts.js') @endsection