@extends('adminsection.layouts.master') @section('title') Packages || @parent @stop @section('page-title') Packages @stop @section('main-content')
Add New
@foreach($packages as $package) @endforeach
# Title Country Price Actions
{{$loop->iteration}} {{$package->package_title}} @if($package->is_popular == 1) P @endif @if($package->is_last_minute_deal == 1) L @endif @if($package->is_deal_of_month == 1) D @endif {{$package->country->name}} BDT {{$package->price}} Edit Delete View
{{$packages->links()}}
@stop