@extends('layouts.main') @section('content') @push('head') Page title | Site title @endpush
@if($errors->any())
@endif @if (session('status'))
{{ session('status') }}
@endif @if (session('error_m'))
{{ session('error_m') }}
@endif

All Kiosks

All information about various Kiosks
@if(sizeof($kiosks)>0) @php $counter=1; @endphp @foreach($kiosks as $kiosk) @php $counter++; @endphp @endforeach @endif
# Kiosk Name Kiosk Code Kiosk Manager City Location Description Status Actions
{{$counter}} {{$kiosk->name}} {{$kiosk->code}} {{$kiosk->username}} {{$kiosk->name_city}} {{$kiosk->location_name}} {{$kiosk->description}} @if($kiosk->status == 0) Active @else Inactif @endif
{{-- delete kiosk modals --}} {{-- see kiosk agencies modals --}}
{{-- end modals --}} @push('script') @endpush @endsection'