@extends('dashboard.layout.app') @section('style') @endsection @section('content') @include('dashboard.blocks.title',['button' => true, 'route' =>route('books.create'), 'icon' => 'plus'])
{{__('translation.clear search result')}}
{{--

{{__('translation.result_count')}} ({{$rows->count()}})

--}}
@foreach ($rows as $item)
@include('dashboard.blocks.active')
@if ($item->image) {{ $item->title }} @else No Image @endif
{{ $item->title }}

Created: {{ $item->created_at->format('d M Y') }}

@foreach ($model::$tableActions as $k => $v) {{$v}} @endforeach {{__('translation.delete')}}
@endforeach
@endsection @section('script') @endsection