@extends('adminlte::page') @section('title', " $title ") @section('content')
Entrada de material para distribuição {!! $count !!}
@if(count($perspectives) === 0)
Você não tem nenhuma entrada de material
@else
@include('app.includes.alerts')
@can('excluir-entrada-material') @endcan @foreach($perspectives as $perspective) @can('excluir-entrada-material') @endcan @endforeach
Data Cliente Material Qtd Lançado Status Editar ConfirmarExcluir
{{ date('d/m/Y', strtotime($perspective->date)) }} {{ $perspective->customer->fantasy_name }} {{ $perspective->materialcustomer->material }} {{ $perspective->qtd }} {{ $perspective->user->name }} {{ $perspective->status }}
@csrf @method('DELETE')
@endif
{!! $perspectives->links() !!}
@stop