@extends('layout')
@section('h4-page', __('aricle'))
@section('contents')
@if (session('success'))
{{ session('success') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
| # |
Title |
Action |
@forelse (@$main as $key => $item)
| {{ $key + 1 }} |
{{ $item->title }} |
edit
|
@empty
| No data found. |
@endforelse
{{ @$main->links('pagination::bootstrap-5') }}
@endsection
@section('scripts')
@endsection