@extends('layouts.app') @section('title','Other Names') @section('breadcrumb') @endsection @section('content') @if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@foreach($errors->all() as $e)
{{ $e }}
@endforeach
@endif
@forelse($others as $other) @empty @endforelse
NameCodeTypePhoneEmailStatusActions
{{ $other->name }}
{{ $other->code??'—' }} {{ $other->type??'—' }} {{ $other->phone??'—' }} {{ $other->email??'—' }} {{ $other->is_active?'Active':'Inactive' }}
@if(auth()->user()->hasPermission('masters','edit'))@endif @if(auth()->user()->hasPermission('masters','delete'))
@csrf @method('DELETE')
@endif
No other names found.
@if($others->hasPages())
{{ $others->links() }}
@endif
@endsection @push('scripts') @endpush