@extends('layouts.default') @section('content')

{{ __('company.module')}} {{ __('company.company_list')}} @if(ArrowadAuth::auth_allows('company','C')) @endif

@if ($message = Session::get('success'))

{{ $message }}

@endif
@foreach($companies as $company) @endforeach
{{ __('company.company_title')}} {{ __('company.company_name_ar')}} {{ __('common.action')}}
{{$company->name}} {{$company->name_ar}}
@if(ArrowadAuth::auth_allows('company','E')) {{ __('common.edit')}} @endif @csrf @method('DELETE')
@stop