@extends('admin.layouts.app')
@section('page-title')
Pages
@endsection
@section('content')
| ID |
Title |
Status |
Action |
@foreach ($pages as $page)
| {{ $page->id }} |
{{ Str::of($page->title)->words(10) }} |
@if($page->is_active)
Active
@else
Inactive
@endif
|
|
@endforeach
@endsection
@section('scripts')
@endsection