@extends('layouts.app',[ 'class' => '', 'folderActive' => '', 'elementActive' => 'factures-operations' ]) @section('head_supplement') @endsection @section('content')
Factures
Liste des operations à facturer
Associer une facture
@foreach($listings as $key => $listing) {{-- @dd($listing)--}} @endforeach
Date full Date du operation operation operation id operation id Client Client ID Action Action
{{ strtotime(str_replace('/', '-', $listing['date_creation'])) }} {{ date("d/m/Y", strtotime(str_replace('/', '-', $listing['date_creation']))) }} @if (isset($listing['operation_title']) && file_exists("storage/operations/operation_" . $listing['operation_id'] . "/" . $listing['operation_title'] . ".pdf")) {{ $listing['operation_title'] ?? '' }} @else {{ $listing['operation_title'] }} @endif {{ strtoupper($listing['operation_id']) }} {{ strtoupper($listing['client_title']) }} {{ strtoupper($listing['client_id']) }}
@endsection @section('modal') @include('modals.factures.operations') @endsection