@extends('Admin.layout.app') @section('content') Add Action @if (session('success')) {{ session('success') }} @endif List of Actions # Ref Id Title Created Date Action @foreach($actions as $item) {{$loop->iteration}} {{"ACT-".$item->id}} {{ucwords($item->title)}} {{date('d/m/Y',strtotime($item->created_at))}} @csrf @method('DELETE') @endforeach {{ $actions->links() }} @endsection @push('script') @endpush