@extends('layouts.app') @section('content') @include('layouts.top-header', [ 'title' => __('Notification Template'), 'class' => 'col-lg-7' ])
{{__('Notification Template')}}

{{__('This page of the Admin Web Panel is specifically designed for large web screens such as Desktops, Please switch over to the larger screens to see the page content')}}

@php $base_url = url('/'); @endphp
@foreach ($templates as $key => $temp) @if ($key == 0) @php $first = array(); $first = $temp; @endphp @endif @endforeach
@csrf

{{__($first->title)}}

{{__('Available placeholder')}}

@php $loop = array( 'UserName', 'OTP', 'AppName', 'NewPassword', 'Date', 'Time', 'BookingId', 'BusinessName', 'BookingAt', 'Amount', 'BookingStatus', 'EmployeeName', ); @endphp @foreach ($loop as $item)
@endforeach

{{__('Available image src')}}

@php $loop = array( 'Black Logo' => asset('storage/images/app/'.App\AdminSetting::first()->black_logo), 'White Logo' => asset('storage/images/app/'.App\AdminSetting::first()->white_logo), 'Small Icon' => asset('storage/images/app/'.App\AdminSetting::first()->favicon) ); @endphp @foreach ($loop as $key => $item)
@endforeach
@endsection