@extends('Company.layout.master') @section('title',"Working Country") @section('page_name',"Working Country") @push('styles') @endpush @section('content')
{{-- Alert Section --}} @if(session('success')) @endif @if(session('error')) @endif
{{-- Column 1: Add Country Form --}}
Add New Country
@csrf
{{-- Column 2: Data Table --}}
Active Working Countries
@foreach($country as $c) @endforeach
# Country Name Action
{{$loop->iteration}}
{{strtoupper(substr($c->country->country,0,2))}}
{{$c->country->country}}
@csrf @method('DELETE')
@endsection @push('scripts') @endpush