@extends(\Auth::user()->role != 10 ? 'layout' : 'layoutfrontdesk') @section('title', 'Room | Add Room') @section('content')
@csrf
Data Room {{-- @if(Auth::user()->role == 1) @else @endif --}}
@php $vacant_options = ''; $occupied_options = ''; $other_options = ''; @endphp @foreach(config('custom.status_kamar') as $key => $val) @php if(explode(' ', $val)[0] == 'Vacant'){ //Vacant $vacant_options .= ''; } elseif(explode(' ', $val)[0] == 'Occupied'){ //Occupied $occupied_options .= ''; } else{ $other_options .= ''; } @endphp @endforeach

Back
@endsection @section('js') @endsection