@extends('backend.layouts.master') @section('section-title', 'Branch') @section('page-title', 'Branch List') @if (check_permission('branch.store')) @section('action-button') Add Branch @endsection @endif @push('css') @endpush @section('content')
{{--
@php $custommer = App\Models\Customer::get(); @endphp
Reset Print
--}}
@forelse($branchs as $data) {{-- edit modal --}} @csrf @method('PUT') {{-- delete modal --}} @csrf @method('DELETE') @empty @endforelse
#SL Name Phone Address Action
{{ $loop->index + 1 }} {{ $data->name }} {{ $data->phone }} {{ $data->address }}
No Data Available
{{-- Add Modal --}}
@csrf
@endsection