@extends('dashboard.layouts.master') @section('css') @endsection @section('breadcrumb')

{{ trans('labels.books') }}

@can('books-create') @endcan
@endsection @section('content')
@foreach ($data as $book) @endforeach
{{ trans('labels.name') }} {{ trans('labels.image') }} {{ trans('labels.fees') }} {{ trans('labels.status') }} {{ trans('labels.action') }}
{{ $book->title }}
{{$book->level->title ?? ""}}
{{ $book->fees }} @if ($book->status) {{$book->status}} @else {{$book->status}} @endif @can('books-edit') @endcan @can('books-delete') @endcan
@include('dashboard.pages.student-management.partials.add-action-modal') @endsection @section('script') @endsection