@extends('layouts.master') @section('title', 'Country List') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.header-sub')
@yield('title')


@foreach($countrys as $key=>$country) @endforeach
No. Name En Name Th Code Manage
{{ ++$key }} {{ $country->country_name ?? '-' }} {{ $country->country_name_th ?? '-' }} {{ $country->country_code ?? '-' }}
@include('layouts.footer') @endsection