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

OFFERTAS Y DESCUENTOS

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

@if(!isset($courier_discount)) Agregar oferta o descuento @elseif(strstr(Request::url(), "view")) Ver oferta o descuento @else Editar oferta o descuento @endif

@if(isset($courier_discount))
@else @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@if ($errors->has('restrictions')) {{ $errors->first('restrictions') }} @endif
@if ($errors->has('date_init')) {{ $errors->first('date_init') }} @endif
@if ($errors->has('date_finish')) {{ $errors->first('date_finish') }} @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