C++ OOPS Concepts
The main aim of OOP is to bind together the data and the functions that operate on them so that no other part of the code can access this data except that function.
<?php | |
$file = Storage::disk('public')->put("attachments/", $attachment); | |
echo asset('storage/'.$attachment); |
<?php | |
use Illuminate\Support\Facades\Route; | |
use Illuminate\Support\Facades\Artisan; | |
Route::post('/link', function () { | |
Artisan::call('storage:link'); | |
}); |
<?php | |
return [ | |
/* | |
|-------------------------------------------------------------------------- | |
| Symbolic Links | |
|-------------------------------------------------------------------------- | |
| | |
| Here you may configure the symbolic links that will be created when the |
<template> | |
<div class="container" style="margin-top:50px"> | |
<div v-if="webinars.length=='1'">No result found</div> | |
<div :key="weibnar.id" v-for="weibnar in webinars"> | |
<h2 class="mt-5" v-if="loading">{{ weibnar.heading }}</h2> | |
<div class="row"> | |
<div :key="web.id" | |
class="col-sm-4 col-md-2 col-lg-2 col-xxl-2 mt-3" v-for="web in weibnar.w_data"> |
<template> | |
<div class="container" style="margin-top:50px"> | |
<div :key="weibnar.id" v-for="weibnar in webinars"> | |
<h2 class="mt-5" v-if="loading">{{ weibnar.heading }}</h2> | |
<div class="row"> | |
<div :key="web.id" | |
class="col-sm-4 col-md-2 col-lg-2 col-xxl-2 mt-3" v-for="web in weibnar.w_data"> | |
<v-skeleton-loader | |
:loading="loading" |
<template> | |
<div class="container" style="margin-top:50px"> | |
<div :key="weibnar.id" v-for="weibnar in webinars"> | |
<h2 class="mt-5" v-if="loading">{{ weibnar.heading }}</h2> | |
<div class="row"> | |
<div :key="web.id" | |
class="col-sm-4 col-md-2 col-lg-2 col-xxl-2 mt-3" v-for="web in weibnar.w_data"> | |
<v-skeleton-loader | |
:loading="loading" |
<template> | |
<div class="container" style="margin-top:50px"> | |
<div v-for="weibnar in webinars" :key="weibnar.id"> | |
<h2 class="mt-5" v-if="loading">{{ weibnar.heading }}</h2> | |
<div class="row"> | |
<div v-for="web in weibnar.w_data" | |
:key="web.id" class="col-sm-4 col-md-2 col-lg-2 col-xxl-2 mt-3"> | |
<v-skeleton-loader | |
class="card h-100" |