@extends('layouts.app') @section('urlContent') {!! view('components.breadcrumbs', [ 'b_items' => [ 'Çalışan Maaş' => '/accounting/salary-index', 'Talimatlarım' => '/accounting/worker-salary/instructions', ], ]) !!} @endsection @section('content') {{-- @include('components.sidebar') @include('components.profile') --}}
    @foreach ($instructions as $instruction)
  1. {{ $instruction ? \Carbon\Carbon::parse($instruction?->date)->isoFormat('D MMMM Y') : '' }}

    {{ $instruction->excel_file_path ? 'Dosya Yüklenmiş' : 'Dosya Yüklenmemiş' }}

    {{ $instruction->bank_file_path ? 'Dosya Yüklenmiş' : 'Dosya Yüklenmemiş' }}

    {{ $instruction->description }}

    {{ $instruction->succesfuly ?? '0' }}

    {{ $instruction->unsuccesfuly ?? '0' }}

    Düzenle
  2. @endforeach
@endsection