@extends('admin.master') @section('title',@trans('Companies')) @section('content')

@trans('Companies')

@include('admin.pages.company._model_search')
@csrf
@forelse ($companies as $item) @empty @endforelse
# @trans('Title') @trans('Email') @trans('Phone') @trans('Website') @trans('Created By') @trans('Status') @trans('Settings')
{{ $loop->index + 1 }} {{ @$item->trans->where('locale', $current_lang)->first()->title}} {{ @$item->email}} {{ @$item->phone}} {{ @$item->website}} {{ @$item->create_by->name}} @if ($item->status == 1) @trans('Active') @else @trans('Unactive') @endif @include('admin.pages.company._model_delete', ['id' => $item->id])
@trans('No companies found')
@endsection