@extends('layouts.dashboard')
@section('css')
@endsection
@section('content')
{{-- Table Component ['href of Add Button'] & ['The Title Of The Table'] --}}
{{-- Head Of The Table --}}
@slot('table_header')
{{ __('Avatar') }}
{{ __('Name') }}
{{ __('Role') }}
{{ __('Companies') }}
{{ __('Controll') }}
@endslot
{{-- Body Of The Table --}}
@slot('table_body')
@foreach ($users as $item)
{{ $item->name }}
{{ $item->roles[0]->name ?? '-' }}
@foreach ($item->companies as $company)
{{ $company->name[$lang] }} ,
@endforeach