@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('countries.index'), 'name' => "قائمة الدول"]],['title'=> 'قائمة الدول']]; @endphp @section('title', 'ادارة قائمة الدول') @section('content') قائمة الدول قائمة الدول اضافة دولة جديد كود اسم الدولة كود الجوال الحالة الاجراءات المتاحة @foreach ($countries as $country) {{ $country->id }} {{ $country->country_name }} {{ $country->country_code }} {{ $country->active == 1 ? 'فعال' : 'غير مفعل' }} @can('accounts-list') @endcan @can('accounts-edit') @endcan @can('accounts-delete') @endcan @endforeach @endsection