@extends('layouts.app') {{-- Customize layout sections --}} @section('subtitle', 'POSITIONS') @section('content_header_title', 'POSITIONS') @section('content_header_subtitle', 'LIST') {{-- Content body: main page content --}} @section('content_body') @can('position create')
NEW
@endcan

POSITION LIST

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