Okay , do I have to learn of all?
Can i earn some money by writing blog ?
Does anyone have experience connecting Amazon Pay to Laravel app?
there is no way to do it just in laravel ?
Any laravel developer here?
Laravel version?
Can you send screenshot error command ?
allright,thank you so much
A full-stack framework for Laravel that takes the pain out of building dynamic UIs.
Okay , do I have to learn of all?
Allright
Im making a blog website
I wish to be able to change the layout but most importantly the background color body from white to black
Does anyone have experience connecting Amazon Pay to Laravel app? I want to do that but I confused
I’m preparing an API and i need to add notification in my app , could any one help ?
plz give me some good resource to learn about this concept
thanks in advance
I’m preparing an API and i need to add notification in my app , could any one help ?
plz give me some good resource to learn about this concept
thanks in advance
Use firebase, sir
there is no way to do it just in laravel ?
DM me I got a work
Yes
I have used this package but is there any other package better than this for report generation as this is not taking bootstrap classes in the view.
Laravel version?
You can generate pdf file by html code )
Note : paid task
Note : paid task
I am Laravel Exp
Venugopal Iyer…
Muthuswami Venugopal Iyer…
Urghh, you know this is going to take forever 😴 but I bet these internships won’t!
*Short-term Internships* are trending where we just have to *work 2-4 weeks to get valuable work experience and an assured stipend.*
We can apply to our favorite profiles before others and win rewards up to INR 10,000 and more! Register here- https://internshala.com/short-term-internships-june22?utm_source=eap_telegram&utm_medium=20781807
03-Sep-2022 Apply to 2000+ summer internships all over India and abroad with stipend across all streams. Apply and register for free now.
Note : paid task
Yes more than 5 years of experience.
php artisan storage:link
And in return:
The [storage] link already exists.
The links have been created.
this is my index.php file:
<?php
/**
* Laravel – A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
define(‘LARAVEL_START’, microtime(true));
/*
|————————————————————————–
| Register The Auto Loader
|————————————————————————–
|
| Composer provides a convenient, automatically generated class loader for
| our application. We just need to utilize it! We’ll simply require it
| into the script here so that we don’t have to worry about manual
| loading any of our classes later on. It feels great to relax.
|
*/
require __DIR__.’/../vendor/autoload.php’;
/*
|————————————————————————–
| Turn On The Lights
|————————————————————————–
|
| We need to illuminate PHP development, so let us turn on the lights.
| This bootstraps the framework and gets it ready for use, then it
| will load up this application so that we can run it and send
| the responses back to the browser and delight our users.
|
*/
$app = require_once __DIR__.’/../bootstrap/app.php’;
/*
|————————————————————————–
| Run The Application
|————————————————————————–
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client’s browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
$kernel = $app->make(IlluminateContractsHttpKernel::class);
$response = $kernel->handle(
$request = IlluminateHttpRequest::capture()
);
$response->send();
$kernel->terminate($request, $response);
php artisan storage:link
And in return:
The [storage] link already exists.
The links have been created.
this is my index.php file:
<?php
/**
* Laravel – A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
define(‘LARAVEL_START’, microtime(true));
/*
|————————————————————————–
| Register The Auto Loader
|————————————————————————–
|
| Composer provides a convenient, automatically generated class loader for
| our application. We just need to utilize it! We’ll simply require it
| into the script here so that we don’t have to worry about manual
| loading any of our classes later on. It feels great to relax.
|
*/
require __DIR__.’/../vendor/autoload.php’;
/*
|————————————————————————–
| Turn On The Lights
|————————————————————————–
|
| We need to illuminate PHP development, so let us turn on the lights.
| This bootstraps the framework and gets it ready for use, then it
| will load up this application so that we can run it and send
| the responses back to the browser and delight our users.
|
*/
$app = require_once __DIR__.’/../bootstrap/app.php’;
/*
|————————————————————————–
| Run The Application
|————————————————————————–
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client’s browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
$kernel = $app->make(IlluminateContractsHttpKernel::class);
$response = $kernel->handle(
$request = IlluminateHttpRequest::capture()
);
$response->send();
$kernel->terminate($request, $response);
and this is my config/filesystems.php file:
<?php
return [
/*
|————————————————————————–
| Default Filesystem Disk
|————————————————————————–
|
| Here you may specify the default filesystem disk that should be used
| by the framework. The “local” disk, as well as a variety of cloud
| based disks are available to your application. Just store away!
|
*/
‘default’ => env(‘FILESYSTEM_DRIVER’, ‘local’),
/*
|————————————————————————–
| Default Cloud Filesystem Disk
|————————————————————————–
|
| Many applications store files both locally and in the cloud. For this
| reason, you may specify a default “cloud” driver here. This driver
| will be bound as the Cloud disk implementation in the container.
|
*/
‘cloud’ => env(‘FILESYSTEM_CLOUD’, ‘s3’),
/*
|————————————————————————–
| Filesystem Disks
|————————————————————————–
|
| Here you may configure as many filesystem “disks” as you wish, and you
| may even configure multiple disks of the same driver. Defaults have
| been setup for each driver as an example of the required options.
|
| Supported Drivers: “local”, “ftp”, “sftp”, “s3”
|
*/
‘disks’ => [
‘local’ => [
‘driver’ => ‘local’,
‘root’ => storage_path(‘app’),
],
‘public’ => [
‘driver’ => ‘local’,
‘root’ => storage_path(‘app/public’),
‘url’ => env(‘APP_URL’).’/storage’,
‘visibility’ => ‘public’,
],
‘s3’ => [
‘driver’ => ‘s3’,
‘key’ => env(‘AWS_ACCESS_KEY_ID’),
‘secret’ => env(‘AWS_SECRET_ACCESS_KEY’),
‘region’ => env(‘AWS_DEFAULT_REGION’),
‘bucket’ => env(‘AWS_BUCKET’),
‘url’ => env(‘AWS_URL’),
],
],
/*
|————————————————————————–
| Symbolic Links
|————————————————————————–
|
| Here you may configure the symbolic links that will be created when the
| `storage:link` Artisan command is executed. The array keys should be
| the locations of the links and the values should be their targets.
|
*/
‘links’ => [
public_path(‘storage’) => storage_path(‘app/public’),
],
];
php artisan storage:link
And in return:
The [storage] link already exists.
The links have been created.
this is my index.php file:
<?php
/**
* Laravel – A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
define(‘LARAVEL_START’, microtime(true));
/*
|————————————————————————–
| Register The Auto Loader
|————————————————————————–
|
| Composer provides a convenient, automatically generated class loader for
| our application. We just need to utilize it! We’ll simply require it
| into the script here so that we don’t have to worry about manual
| loading any of our classes later on. It feels great to relax.
|
*/
require __DIR__.’/../vendor/autoload.php’;
/*
|————————————————————————–
| Turn On The Lights
|————————————————————————–
|
| We need to illuminate PHP development, so let us turn on the lights.
| This bootstraps the framework and gets it ready for use, then it
| will load up this application so that we can run it and send
| the responses back to the browser and delight our users.
|
*/
$app = require_once __DIR__.’/../bootstrap/app.php’;
/*
|————————————————————————–
| Run The Application
|————————————————————————–
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client’s browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
$kernel = $app->make(IlluminateContractsHttpKernel::class);
$response = $kernel->handle(
$request = IlluminateHttpRequest::capture()
);
$response->send();
$kernel->terminate($request, $response);
In folder public, you already a sysmlink
If you want to use Laravel only, i recemended for use Pusher
Wait, notification for Mobile / web platform?
No i don’t. That’s the point.
The error says : The [storage] link already exists.
It should say: The [publicstorage] link already exists.
Right?
I do not have any storage folder in public folder
The error says : The [storage] link already exists.
It should say: The [publicstorage] link already exists.
Right?
I do not have any storage folder in public folder
Can you send screenshot error command ?