@extends('layouts.app-general') @section('content')

ARTICULOS CALCULADOS

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif
LISTADO DE ARTICULOS{{ $calculates_computed->total() }}
@foreach($calculates_computed as $calculate_computed) @endforeach
COURIER PRECIO LIBRA MANEJO ARTICULO PESO PRECIO CREACIÓN
{{ $calculate_computed->courier_name }} {{ $calculate_computed->courier_freight }} {{ $calculate_computed->courier_managment }} {{ $calculate_computed->article }} {{ $calculate_computed->weight }} {{ $calculate_computed->price }} {{ $calculate_computed->created_at }}
@if(count($calculates_computed)==0)
No hay registros
@endif
@include('admin.common.pagination.default', ['paginator' => $calculates_computed])
@endsection