@extends('layouts.app') @section('content')

dashboard

@can('dashboard-create') Create New dashboard @endcan
@if ($message = Session::get('success'))

{{ $message }}

@endif @foreach ($dashboard as $dashboard) @endforeach
No Name Details Action
{{ ++$i }} {{ $dashboard->name }} {{ $dashboard->detail }}
Show @can('dashboard-edit') Edit @endcan @csrf @method('DELETE') @can('dashboard-delete') @endcan
{!! $dashboard->links() !!}

Tutorial by ItSolutionStuff.com

@endsection