@extends('layouts.app') @section('title', 'Redirects') @push('stylesheets') @include('partials.index-datatable-styles') @endpush @section('content') @foreach ($redirects as $r) {{ $r->id }} {{ $r->old_slug }} {{ $r->new_slug }} {{ $r->updated_at->format('d M Y h:i A') }} Edit @csrf @method('DELETE') Delete @endforeach @endsection @push('scripts') @include('partials.index-datatable-scripts') @endpush