@extends('admin::layouts.master') @section('title') Package @endsection @section('breadcrumb') @php $breadcrumbData = [ [ 'title' => 'Package', 'link' => 'null', ], [ 'title' => 'Dashboard', 'link' => route('dashboard'), ], [ 'title' => 'Packages', 'link' => null, ], ]; @endphp @include('admin::layouts.partials.breadcrumb', $breadcrumbData) @endsection @section('content')

List of Package

@foreach ($packages ?? [] as $package) @endforeach
S.N Image Title Country Price Days People Ordering Actions
#{{ $loop->iteration }} {{ $package->title }} {{ $package->country->name }} {{ $package->price }} {{ $package->duration }} {{ $package->group_size }} {{ $package->ordering }}
{{ $packages->links('admin::layouts.partials.pagination') }}
@endsection {{-- style --}} @push('required-styles') @include('admin::vendor.dataTables.style') @endpush {{-- script --}} @push('required-scripts') @include('admin::vendor.dataTables.script') @endpush