@extends('layouts.app') @section('bread-crumb')

Create Station

@endsection @section('content')
Return
@csrf @isset($station) @method('PUT') @endisset
@isset($station) @else @error('station') {{ $message }} @enderror @endisset
@isset($station) @else @error('description') {{ $message }} @enderror @endisset
@if (session()->has('station.store') || session()->has('station.update') || session()->has('station.destroy'))
@if (session()->get('station.store')) New station successfully added! @elseif(session()->get('station.update')) Update Successful! @elseif(session()->get('station.destroy')) Delete Successful! @endif
@endif

@forelse ($stations as $item) @empty @endforelse
Station Description Created at
{{$item->station}} {{$item->description}} {{$item->created_at}}
 
@csrf @method('DELETE')
No beds found.
@endsection