@extends('layouts.app') @push('styles')
@endpush @section('filter-section')
@if (!in_array('client', user_roles()))
@lang('app.employee')
@if ($employees->count() > 1 || in_array('admin', user_roles()))
@lang('app.all')
@endif @foreach ($employees as $employee) @endforeach
@endif
@lang('app.client')
@if (!in_array('client', user_roles()))
@lang('app.all')
@endif @foreach ($clients as $client) @endforeach
@lang('app.clearFilters')
@endsection @php $addEventsPermission = user()->permission('add_events'); @endphp @section('content')
@if ($addEventsPermission == 'all' || $addEventsPermission == 'added')
@lang('modules.events.addEvent')
@endif
@endsection @push('scripts') @endpush