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

{{ __('View Master Events') }}

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