@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')
Data |
Cliente |
Material |
Quantidade |
Status |
Editar |
Distribuição |
Excluir |
@foreach($perspectives as $perspective)
@if($perspective->status == "Recebido")
{{ date('d/m/Y', strtotime($perspective->date)) }} |
{{ $perspective->customer->fantasy_name }} |
{{ $perspective->materialcustomer->material }} |
{{ $perspective->qtd }} |
{{ $perspective->status }} |
|
|
|
@endif
@endforeach
@endif
@stop