@extends('layouts.master') @section('content') @include('partials.containers-header')
@include('partials.messages_display')
@lang('Country List')
@include('partials.index-buttons',[ 'model' => 'country', 'btns' => 'nest' ])
@if (count($records) > 0) {!! $records->links() !!} @endif
@foreach($records as $record) @include('partials.modal_delete',$record->data) @endforeach
@lang('Name') @lang('Iata') @lang('Language') @lang('Actions')
{{$record->name}} {{$record->iata}} {{$record->language_name}} @include('partials.actions-buttons',[ 'model' => $record->data['model'], 'id' => $record->id, 'trashed' => $record->trashed() ])
@include('partials.containers-footer') @endsection @section('search') @include('country.search',[ 'record' => null ]) @endsection @section('javascript') @endsection