@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')
NEW
@endcan

REGION LIST

{{html()->form('GET', route('region.index'))->open()}}
{{html()->text('search', $search)->class('form-control')->placeholder('Search')}}
{{html()->form()->close()}}
@foreach($regions as $region) @endforeach
TITLE # ACTION
{{$region->name}} {{$region->guests()->count()}} @can('region edit') @endcan @can('region delete') @endcan
@stop {{-- Push extra CSS --}} @push('css') {{-- Add here extra stylesheets --}} @endpush {{-- Push extra scripts --}} @push('js') @endpush