@extends('master') @section('content') @php $currency = \App\Models\Setting::first()->currency; @endphp
@include('admin.layout.breadcrumbs', [ 'title' => __('Our Clients'), ])
@if (session('status')) @endif

{{ __('View Our Clients') }}

@can('our_clients_create') @endcan
@if (Gate::check('our_clients_create') || Gate::check('our_clients_delete')) @endif @foreach ($our_clients as $item) @if (Gate::check('our_clients_edit') || Gate::check('our_clients_delete')) @endif @endforeach
{{ __('Image') }} {{ __('Name') }} {{ __('Status') }}{{ __('Action') }}
{{ $item->name }} {{ $item->status == 1 ? 'Active' : 'Inactive' }} @can('our_clients_edit') @endcan @can('our_clients_delete') @endcan
@endsection