@extends('Layouts/admin_dashboard')
@section('content')
@t('Add New')
@t('Locations')
{!! pagination_sort('name', t('Venue')) !!} |
@t('Location ID') |
@t('Location') |
|
@foreach ($data as $row)
{{ $row->Venue->name }} |
{{ $row->location_id }} |
@if ($row->location_data)
{{ $row->location_data->address }}
{{ $row->location_data->postcode }}
@endif
|
|
@endforeach
{!! pagination(['total' => $pagination_total]) !!}
@endsection