@extends('layouts.app')
@section('content')
{{ __('Countries Page') }}
# |
Country Code |
Country Name |
Country Description |
Country Status |
Actions |
@foreach($items as $item)
{{$item->country_id}} |
{{$item->country_code}}
| {{$item->country_name}} |
{{$item->country_description}} |
{{$item->country_status}} |
|
@endforeach
@endsection