This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This code ensures compatibility with both URLs, handling parameters in both query and hash fragments. | |
(function () { | |
const searchIdKey = 'sid'; | |
const searchTypeKey = 'searchType'; | |
const ridKey = 'rid'; | |
let searchId = ''; | |
let searchType = ''; | |
let recipientId = ''; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
[ | |
'uri' => 'budenurse/customer/signed-in-customer', | |
'guard' => 'nurse' | |
], | |
[ | |
'uri' => 'budenurse/jobs/list', | |
'guard' => null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Livewire; | |
use PDF; | |
use Livewire\Component; | |
use Livewire\WithFileUploads; | |
use Illuminate\Support\Facades\Storage; | |
class ImageUpload extends Component |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Livewire; | |
use App\Education; | |
use Livewire\Component; | |
class CloneForm extends Component | |
{ | |
public $inputs = []; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<div> | |
@if (session()->has('message')) | |
<div class="alert alert-success"> | |
{{ session('message') }} | |
</div> | |
@endif | |
</div> | |
<form wire:submit.prevent="store"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Livewire; | |
use App\Product; | |
use Livewire\Component; | |
use Livewire\WithPagination; | |
class Datatable extends Component | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Livewire; | |
use App\Customer; | |
use Livewire\Component; | |
class Multiform extends Component | |
{ | |
public $name; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
php artisan iseed data_types,data_rows,categories,posts,pages,menus,menu_items,roles,users,user_roles,permissions,permission_role,settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
window.user = "{!! | |
addslashes(json_encode([ | |
'user'=> auth()->user(), | |
'notifications'=> ['all'=>auth()->user()->notifications,'read'=> auth()->user()->readNotifications, 'unread'=>auth()->user()->unreadNotifications], | |
'roles'=> auth()->user()->roles, | |
'permissions'=> auth()->user()->getAllPermissions() | |
])) | |
!!}"; |