@extends('posts.layout')
@section('content')
Laravel 8 CRUD Example from scratch - laravelcode.com
@if ($message = Session::get('success'))
@endif
| No |
Name |
Details |
Action |
@foreach ($data as $key => $value)
| {{ ++$i }} |
{{ $value->title }} |
{{ \Str::limit($value->description, 100) }} |
|
@endforeach
{!! $data->links() !!}
@endsection