@extends('admin.layouts.master') @section('location_menu', 'menu-open') @section('country', 'active') @section('title') {{ $data['title'] ?? '' }} @endsection @push('style') @endpush @section('content')

{{ $data['title'] ?? '' }}

Manage {{ $data['title'] ?? '' }}

@if (Auth::user()->can('admin.country.create')) Add New @endif
@if (isset($data['rows']) && count($data['rows']) > 0) @foreach ($data['rows'] as $key => $row) @endforeach @endif
SL Country Name Country Code Action
{{ $key + 1 }} {{ $row->name }} {{ $row->code }} @if (Auth::user()->can('admin.country.edit')) Edit @endif @if (Auth::user()->can('admin.country.delete')) Delete @endif
{{-- create modal --}} {{-- edit modal --}} @endsection @push('script') @endpush