@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')
@endcan
| TITLE |
# |
ACTION |
@foreach($positions as $position)
| {{$position->title}} |
{{$position->guests()->count()}} |
@can('position edit')
@endcan
@can('position delete')
@endcan
|
@endforeach
@stop
{{-- Push extra CSS --}}
@push('css')
{{-- Add here extra stylesheets --}}
@endpush
{{-- Push extra scripts --}}
@push('js')
@endpush