芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/resources/views/payments/index.blade.php
@extends('layouts.app') @push('datatable-styles') @include('sections.datatable_css') @endpush @section('filter-section')
@lang('app.date')
@if (!in_array('client', user_roles()))
@lang('app.client')
@lang('app.all')
@foreach ($clients as $client)
@endforeach
@endif
@lang('app.clearFilters')
@lang('app.project')
@lang('app.all')
@foreach ($projects as $project)
{{ mb_ucwords($project->project_name) }}
@endforeach
@lang('app.status')
@lang('app.all')
@lang('app.pending')
@lang('app.complete')
@lang('app.failed')
@endsection @php $addPaymentPermission = user()->permission('add_payments'); @endphp @section('content')
@if ($addPaymentPermission == 'all' || $addPaymentPermission == 'added')
@lang('modules.payments.addPayment')
@endif
@if (!in_array('client', user_roles()))
@lang('app.selectAction')
@lang('modules.tasks.changeStatus')
@lang('app.delete')
@lang('app.complete')
@lang('app.pending')
@endif
{!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!}
@endsection @push('scripts') @include('sections.datatable_js') @endpush