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