@extends($ajaxCall)
@section("content")
@include('general.tab-header', ['departmentName' => 'IATA', 'moduleName' => 'Terms'])
@foreach($terms as $i => $each)
@if ($i == 0)
Found {{ count($total) }} {{ count($total) > 1 ? 'matches' : 'match'}}.
@if (count($total) > $perPage)
Page {{ $currentPage }} of {{ $totalPage }}
@endif
{{--
--}}
Term
Definition
Context
@lang("content.source")
@lang("content.info")
{{--
--}}
@endif
{{ $each->term }}
{{ $each->definition }}
{{ $each->context }}
{{ $each->source }}
{{ $each->sub_info }}
@endforeach
{!! $pagination->appends($_GET)->render() !!}
@stop