@extends('backend.layouts.master') @section('body')
@component('components.beardcrumb') {{-- /*Page Title Goese Here in this slot variable*/ --}} @slot('title') @lang('branch.index_title') @endslot @if(Auth::user()->can('Branch create')) {{-- /* Create New Route Will Be goes here */ --}} @slot('route_name') branch.create @endslot @slot('btn_class') btn btn-primary @endslot @slot('icon') fa fa-plus @endslot @slot('btn_name') @lang('branch.create_new') @endslot @endif @if(Auth::user()->can('Branch trash')) {{-- for deleted list index --}} @slot('deleted_list_btn_name') @lang('branch.deleted_list') @endslot @slot('deleted_list_route') branch.trash_list @endslot @endif @endcomponent
@lang('common.sl') @lang('branch.branch_name') @lang('common.actions')
@push('footer_script') {{-- --}} @endpush @endsection