@extends('backend.layouts.grid') @section('title', __('Intro Screen')) @section('link', route('admin.introScreens.create')) @section('back', route('admin.settings.index')) @section('content')
{{--
--}}
@if ($introScreensList->count() > 0)
@foreach ($introScreensList as $key => $introScreen) @endforeach
#ID {{ __('Image') }} {{ __('Title') }} {{ __('Status') }} {{ __('Action') }}
{{ $key+1 }} {!! $introScreen->title !!} {!! userStatus($introScreen->status) !!}
@csrf @method('DELETE')
@else @include('backend.includes.empty') @endif
@if (!request()->input('search') && !request()->input('filter')) {{ $introScreensList->links() }} @endif @endsection