- src/
- actions/
- actionTypes.js
- authActions.js
- cartActions.js
- ...
- components/
- common/
- Button/
- common/
- actions/
- Button.js
<?php | |
declare(strict_types=1); | |
// Set the directory containing the images | |
$dir = realpath(dirname(__FILE__)) . "/"; | |
// Scan the directory for image files | |
$files = scandir($dir); |
when i use my office pc, I never add my personal accounts to that office pc. so I add links here, I can view this from that pc without logged in to the any account. :D
https://www.youtube.com/watch?v=hj83cwfOF3Y
https://www.youtube.com/watch?v=SigIbCVMTzU
https://www.youtube.com/watch?v=hlWiI4xVXKY
https://www.youtube.com/watch?v=xr-XV621SQs
https://www.youtube.com/watch?v=DG87oy53_zM&list=PLTh3NfO6kWHqVhzTdQdWoxzBUzr55syku
<?php | |
//https://github.com/vidux/ | |
//check more at https://gist.github.com/vidux | |
namespace Database\Seeders; | |
use Spatie\Permission\Models\Permission; | |
use Illuminate\Database\Seeder; |
//run after juqary loaded | |
$(function(){ | |
// other codes | |
}); | |
//ajax setup csrf token | |
$.ajaxSetup({ | |
headers: { |
Common things to do for your future
Hi! This was created with the aim of getting a basic tasks ideas for those who have no better vision what to do :P (like me). this is a task / responsible list for just take a idea.
disclaimer:
Do not consider this as your ultimate vision plan for this future. because everyone life statuses are dynamic and unique. It is not necessary to follow any of the points mentioned here in the same way, and you have to bear the responsibility when you follow the things here, and we would like to kindly inform you that I will not accept the responsibilities , any inconvenience due to the things mentioned here.
<?php | |
$el_quary // your quary from elequent | |
$query = str_replace(array('?'), array('\'%s\''), $el_quary->toSql()); | |
$query = vsprintf($query, $el_quary->getBindings()); | |
dd( $query); | |
//from https://stackoverflow.com/a/59403835/8926714 |
<?php | |
//Model story | |
/* | |
`Spreedsheet` have many `Rows` `Row` have many `RowValues` | |
`Spreedsheet` parent of `Rows`, `Rows` parent of `RowValues` | |
*/ | |
//table structure | |
/* |
<?php | |
//blog.vidu.dev | |
namespace App\Listeners; | |
use Illuminate\Mail\Events\MessageSending; | |
use Illuminate\Queue\InteractsWithQueue; | |
use Illuminate\Contracts\Queue\ShouldQueue; | |
class EmailEvent | |
{ |
<?php | |
namespace App\Mail; | |
use Illuminate\Bus\Queueable; | |
use Illuminate\Mail\Mailable; | |
use Illuminate\Queue\SerializesModels; | |
use Illuminate\Contracts\Queue\ShouldQueue; | |
class ExampleMail extends Mailable |