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

COURIER

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif
LISTADO DE COURIERS {{ $couriers->total() }}
@foreach($couriers as $courier) @endforeach
# NOMBRE CREACIÓN
@if(isset($courier->logo)) logo}") }}" alt="" style="width:40px;height:40px;border-radius:10px;"> @endif {{ $courier->name }} {{ $courier->created_at }}
@if(count($couriers)==0)
No hay registros
@endif
@include('admin.common.pagination.default', ['paginator' => $couriers])
@endsection