@extends('layouts.app') @section('title', __('dashboard.sidebar_laundries')) @section('page_heading', __('dashboard.sidebar_laundries')) @section('content')
| # | {{ __('dashboard.Name') }} | {{ __('dashboard.Is Default?') }} | {{ __('dashboard.Actions') }} |
|---|---|---|---|
| {{ $laundry->id }} | {{ $laundry->name }} | @if($laundry->is_default) {{ __('dashboard.Yes') }} @else {{ __('dashboard.No') }} @endif |
@canany(['edit laundries','delete laundries'])
@can('edit laundries'){{ __('dashboard.Edit') }}@endcan
@can('delete laundries')
@endcan
|