@extends('admin.layouts.master') @section('dashboard-header') {{ Str::ucfirst($lookup->lookup_name) }} @endsection @section('breadcumb_title') {{ Str::ucfirst($lookup->lookup_name) }} Management @endsection @section($lookup->lookup_name) active @endsection @section('page-content') Create SL Name Status Created At Action @foreach ($lookupData as $item) {{ $loop->iteration }} {{ $item->lookup_value }} @if ($item->status == 1) Active @else Inactive @endif {{ date('Y-m-d', strtotime($item->created_at)) }} Edit Delete @csrf @method('DELETE') @endforeach @include('admin.lookups.create', ['lookup' => $lookup]) @endsection @push('custom_js') @endpush