@extends('layouts.admin')
@section('title','Partes')
@section('styles')
@endsection
@section('options')
@endsection
@section('preference')
@endsection
@section('content')
Id |
Efectivo |
No Forman |
Fecha |
Acciones |
@foreach ($partes as $parte)
{{$parte->id}} |
{{$parte->efectivo}} |
{{$parte->noforman}} |
{{\Carbon\Carbon::parse($parte->created_at)->format('d M Y')}} |
{!! Form::open(['route'=>['partes.destroy',$parte], 'method'=>'DELETE']) !!}
{!! Form::close() !!}
|
@endforeach
@endsection
@section('scripts')
{!! Html::script('melody/js/data-table.js') !!}
@endsection