@extends('layouts.admin.master') @section('title') {{ __('Managers') }} @endsection @push('css') @endpush @section('content') @component('components.breadcrumb') @slot('breadcrumb_title')

{{ __('Managers') }}

@endslot @endcomponent
@foreach ($managers as $manager) {{-- --}} @endforeach
{{ __('Name') }} {{__('Status')}} {{ __('Email') }} {{ __('Mobile') }} {{ __('Role Name') }} {{ __('Image') }} {{ __('Actions') }}
{{ $manager->name }} {{ $manager->status == 'active' ? 'Activated' : 'Not Activated' }} {{ $manager->email }} {{ $manager->mobile }}{{ $manager->view }}{{ $manager->roles_name }}
@push('scripts') @endpush @endsection