@extends('backend.layouts.master') @section('body')
@component('components.beardcrumb') {{-- /*Page Title Goese Here in this slot variable*/ --}} @slot('title') @lang('brand.index_title') @endslot {{-- /* Create New Route Will Be goes here */ --}} @slot('route_name') brand.create @endslot @slot('btn_class') btn btn-primary @endslot @slot('icon') fa fa-plus @endslot @slot('btn_name') @lang('brand.create_new') @endslot @endcomponent
@lang('common.sl') @lang('brand.brand_name') @lang('brand.order_by') @lang('common.status') @lang('common.actions')
@php use App\Models\brand; $data= brand::onlyTrashed()->get(); $sl=1; @endphp @if($data) @foreach ($data as $v) @endforeach @endif
@lang('common.sl') @lang('brand.brand_name') @lang('brand.order_by') @lang('common.actions')
{{$sl++}} @if(config('app.locale') == 'en') {{$v->brand_name_en}} @elseif(config('app.locale') == 'en') {{$v->brand_name_bn}} @endif {{$v->order_by}}
@push('footer_script') @endpush @endsection