@extends('admin.layouts.app') @section('title') Guide @endsection @section('css') @endsection @section('contents')
New Guide
@if(Session::has('message'))
{{ Session::get('message') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
@if(isset($guides)) @php $i = 1; @endphp @foreach($guides as $guide) @endforeach @endif
S/N Name Author Category Order Created at Updated at Status Action
{{ $i++ }} {{ $guide->name }} {{ $guide->author }} {{ $guide->category->name }} {{ $guide->display_order }} {{ $guide->created_at->diffForHumans() }} {{ $guide->updated_at->diffForHumans() }} {{ $guide->status }} View Delete
@endsection @section('js') @endsection