@extends('layouts.app')
{{-- Customize layout sections --}}
@section('subtitle', 'REGIONS')
@section('content_header_title', 'REGIONS')
@section('content_header_subtitle', 'LIST')
{{-- Content body: main page content --}}
@section('content_body')
@can('region create')
@endcan
| TITLE |
# |
ACTION |
@foreach($regions as $region)
| {{$region->name}} |
{{$region->guests()->count()}} |
@can('region edit')
@endcan
@can('region delete')
@endcan
|
@endforeach
@stop
{{-- Push extra CSS --}}
@push('css')
{{-- Add here extra stylesheets --}}
@endpush
{{-- Push extra scripts --}}
@push('js')
@endpush