@extends('layouts.master') @section('styles') @endsection @section('content') @php $breadcrumbs = [ ['label' => 'Dashboard', 'url' => route('admin.dashboard')], ['label' => 'Daily Offer', 'url' =>route('admin.dailyoffer')], ['label' => 'Approved Offer', 'url' => '#', 'active' => true], ]; @endphp
@foreach($cards as $card) @endforeach
@php $columns = [ ['checkbox' => true, 'class' => 'ps-4'], ['label' => 'User'], ['label' => 'Offer Title'], ['label' => 'Proof'], ['label' => 'Submit Date'], ['label' => 'Updated Date'], ['label' => 'Action'], ]; @endphp
@endsection @section('scripts') @include('layouts.components.common-script') @endsection