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

COURIER

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif

@if(!isset($courier_pos)) Agregar sucursal @elseif(strstr(Request::url(), "view")) Ver sucursal @else Editar sucursal @endif

@if(isset($courier_pos))
@else @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('tel')) {{ $errors->first('tel') }} @endif
@if ($errors->has('sector')) {{ $errors->first('sector') }} @endif
@if ($errors->has('province_id')) {{ $errors->first('province_id') }} @endif
@if ($errors->has('sector')) {{ $errors->first('sector') }} @endif
@if ($errors->has('location_lat')) {{ $errors->first('location_lat') }} @endif
@if ($errors->has('location_long')) {{ $errors->first('location_long') }} @endif
Volver atras
@if(isset($schedules))
Horario {{ count($schedules) }}
@foreach($schedules as $schedule) @endforeach
DIA HORA DE INICIO HORA DE FINALIZACION HORA DE INICIAL COMIDA HORA DE FINAL COMIDA
{{ $schedule->day }} {{ $schedule->hour_init }} {{ $schedule->hour_finish }} {{ $schedule->hour_init_lunch }} {{ $schedule->hour_finish_lunch }}
@if(count($schedules)==0)
No hay registros
@endif
@endif
@endsection