@extends('layouts.app') @section('title', trans('menu.contact_title')) @section('content') @php $user = auth()->user(); @endphp
@can('create contacts') {{trans('forms.lbl_add_new')}} @endcan {{trans('title.categories')}}
@if($user->hasAnyPermission(['delete contacts'])) @endif @if($user->hasAnyPermission(['edit contacts', 'delete contacts'])) @endif
{{trans("tables.name_title")}} {{trans("tables.phone_title")}} {{trans("tables.location_title")}} {{trans("tables.category_title")}} {{trans("tables.note_title")}}{{trans("tables.action_title")}}
@include('contact::categories.create_edit') @stop @section("filters") @include('contact::filters') @stop @section('panel-content') @include('contact::form', ['edit' => false]) @stop @section('footer-script') @stop