@extends('layouts.master') @section('content') @push('header_styles') @endpush
@component('components.breadcrumb') @slot('title') @lang('upload_download_file.viewtitle') @endslot @slot('breadcrumb1') @lang('common.dashboard') @endslot @slot('breadcrumb1_link') {{ route('dashboard') }} @endslot @if (\App\Traits\RolePermissionTrait::checkRoleHasPermission('role', 'create')) @slot('action_button1') @lang('common.add_new') @endslot @slot('action_button1_link') {{ route('upload_download_file.create') }} @endslot @endif @slot('action_button1_class') btn-primary @endslot @endcomponent

@lang('upload_download_file.managetitle')


@php $sl=1; @endphp @if($data) @foreach($data as $d) @endforeach @endif
# @lang('common.date') @lang('upload_download_file.title') @lang('common.status') @lang('common.action')
{{$sl++}} {{$d->date}} @if($lang == 'en'){{ $d->title_en ?: $d->title_bn}}@else {{$d->title_bn ?: $d->title_en}}@endif @if($d->status == 1) @lang('common.active') @else @lang('common.inactive') @endif
@lang('common.edit')
@csrf @method('DELETE')
@push('footer_scripts') @endpush @endsection