@extends('adminlte::page') @section('title', " $title ") @section('content')
Autorização de material para distribuição - gerar O.S {!! $count !!}
@if(count($perspectives) === 0)
Você não tem material para autorizar distribuição e gerar O.S
@else
@include('app.includes.alerts')
@foreach($perspectives as $perspective) @if($perspective->status == "Recebido") @endif @endforeach
Data Cliente Material Quantidade Status Editar Distribuição Excluir
{{ date('d/m/Y', strtotime($perspective->date)) }} {{ $perspective->customer->fantasy_name }} {{ $perspective->materialcustomer->material }} {{ $perspective->qtd }} {{ $perspective->status }}
@csrf @method('DELETE')
@endif
{!! $perspectives->links() !!}
@stop