@extends('layouts.master') @section('title', 'company_staff') @section('content')
{{ trans('company_staff.company_staff') }}
@include('pages.company_staff.search') @if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error) @endforeach
@endif
{{ trans('company_staff.table_title') }}
{{trans('label.paginate_showing')}} ((perPage)) {{trans('label.paginate_record_per_page')}}
{{ trans('company_staff.id') }}
{{ trans('company_staff.name') }}
{{ trans('company_staff.tel') }}
{{ trans('company_staff.postcode') }}
{{ trans('company_staff.created') }}
((item.company_staff_id)) ((item.name)) ((item.tel)) ((item.postcode)) ((item.created_at))
@method('DELETE') @csrf
@include('pages.company_staff.add_modal')
@endsection @section('script-footer') @endsection