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

CONTACT PERSON LIST

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