@extends('layouts.app') @section('title', 'All Slugs') @push('stylesheets') @include('partials.index-datatable-styles') @endpush @section('content')
@foreach ($slugs as $s) {{ $s->id }} {{ $s->slug }} {{ class_basename($s->slugable_type) }} {{ $s->slugable_id }} {{ $s->created_at->format('d M Y h:i A') }} @endforeach
@endsection @push('scripts') @include('partials.index-datatable-scripts') @endpush