@extends('layouts.master') @section('title', 'User') @push('css') @include('layouts.datatable_css') @endpush @section('content') {{ __('lang.user_list') }} @can('create-User') {{ __('lang.add_data') }} @endcan {{ $dataTable->table(['class' => 'table table-striped', 'width' => '100%'], true) }} {{ __('lang.add_data') }} {{ __('lang.company') }} {{ __('lang.company') }} @foreach ($companies as $id => $name) {{ $name }} @endforeach {{ __('lang.fullname') }} {{ __('lang.email') }} {{ __('lang.phone') }} {{ __('lang.status') }} {{ __('lang.status') }} {{ __('lang.active') }} {{ __('lang.inactive') }} {{ __('lang.role') }} {{ __('lang.role') }} @foreach ($roles as $id => $name) {{ $name }} @endforeach {{ __('lang.city') }} {{ __('lang.password') }} @method('PUT') {{ __('lang.edit_data') }} {{ __('lang.company') }} {{ __('lang.company') }} @foreach ($companies as $id => $name) {{ $name }} @endforeach {{ __('lang.fullname') }} {{ __('lang.email') }} {{ __('lang.phone') }} {{ __('lang.status') }} {{ __('lang.status') }} {{ __('lang.active') }} {{ __('lang.inactive') }} {{ __('lang.role') }} {{ __('lang.role') }} @foreach ($roles as $id => $name) {{ $name }} @endforeach {{ __('lang.city') }} {{ __('lang.password') }} @endsection @push('js') @include('layouts.datatable_js') @endpush @push('scripts') {{ $dataTable->scripts() }} @endpush