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

COMPANY LIST

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