@extends('layouts.app') @section('content') View Countries @can('create-country') Add New @endcan No Country Name Country Code Country Status Action @foreach ($data as $key => $country) {{ ++$i }} {{ $country->name }} {{ $country->code }} @can('edit-country') status==1) checked @endif /> @endcan @if(!empty($country->status)) Active @else Disabled @endif @can('edit-country') Edit @endcan @can('delete-country') @csrf @method('DELETE') Delete @endcan @endforeach {!! $data->links('pagination::bootstrap-5') !!} {{--