17 lines
484 B
PHP
17 lines
484 B
PHP
@php
|
|
use App\Models\Branch;
|
|
$branch= Branch::first();
|
|
@endphp
|
|
|
|
@if ($branch)
|
|
<x-admin.section-header title="{{ $branch->name .' '. __('rooms.list').' '. $branch->external_ip}}">
|
|
<x-button
|
|
wire:click="$dispatchTo('forms.room-form', 'openModal')"
|
|
icon="plus"
|
|
label="{{ __('rooms.CreateNew') }}"
|
|
class="bg-blue-600 text-white"
|
|
/>
|
|
</x-admin.section-header>
|
|
@else
|
|
<x-admin.section-header title="{{__('rooms.list')}}"></x-admin.section-header>
|
|
@endif |