How can I design spreadsheet like Airtable blank page?

|
LiLoBiY 2020-03-11 18:04:00
may be someone know how to fix it ?
LiLoBiY 2020-03-11 18:04:01
stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages:
error:14090086:SSL
LiLoBiY 2020-03-11 18:05:06
when i try send some Email , i have got this error
Gowtham_Boopathiraj 2020-03-11 18:06:45
Frds
I have update the data name and email check unique
But table primary key ia groupid.
But i define unique validation in laravel error ahowing

But i define model primarykey custom

Gowtham_Boopathiraj 2020-03-11 18:06:50
How to solve
2020-03-11 19:14:00
Good morning group, can you help me as a consumer a third-party API in laravel 6
ashish1321 2020-03-11 19:43:19
I want to make a spreadsheet in Laravel…
how can I make it..
DesolatorMagno 2020-03-11 19:44:02
Like Nike, Just do it?
DesolatorMagno 2020-03-11 19:44:34
Search for a package (that is not deprecated or archived) and use it.
ashish1321 2020-03-11 19:46:25
can you provide me packages link
akhil341 2020-03-11 19:48:54
ashish1321 2020-03-11 19:46:25
can you provide me packages link

https://github.com/Maatwebsite/Laravel-Excel

GitHub – SpartnerNL/Laravel-Excel: 🚀 Supercharged Excel exports and imports in LaravelGitHub
🚀 Supercharged Excel exports and imports in Laravel – GitHub – SpartnerNL/Laravel-Excel: 🚀 Supercharged Excel exports and imports in Laravel
DesolatorMagno 2020-03-11 19:54:16
akhil341 2020-03-11 19:48:54
https://github.com/Maatwebsite/Laravel-Excel

But before working with any packages, read what it can and can’t do, these one for example is a wrapper for https://phpspreadsheet.readthedocs.io/en/latest/

Welcome to PhpSpreadsheet’s documentation – PhpSpreadsheet Documentationphpspreadsheet.readthedocs.io
None
DesolatorMagno 2020-03-11 19:54:19
laravel_discuss-29419.jpg
So even if the original can do all of these, you don’t know how much the wrapper can support.
ashish1321 2020-03-11 20:05:59
how can I design spreadsheet like Airtable blank page ??
ashish1321 2020-03-11 20:06:14
give me idea…
mynameiszubair 2020-03-11 20:13:06
Job Title: Senior Laravel Developer

Location: Coimbatore, India

Experience: atleast 5 years

Salary: Based on your current Salary

Requirements:

Excellent knowledge and familiarity of the Laravel ecosystem

Should be able to customise frameworks and plugins

Should be able to develop new modules

Should be able to modify existing frameworks based on requirements

Should be comfortable with APIs

Sound knowledge of backend technologies and tools

Should have understanding of the front end stack as well

Should have done e-commerce related projects in the past

Excellent hand on PHP and its applications

Immediate joining

Contact: +91-7774019249

2589 2020-03-11 22:02:59
hey i don’t know how to do this.
i have model Drawings.
$this->hasMany(Like::class,’draw_id’);

how i get all drawings ordered by desc ?

PeterJaap 2020-03-11 23:14:56
I usually create a global scope since I probably always want them in a certain order
PeterJaap 2020-03-11 23:15:01
<?php

namespace AppScopes;

use IlluminateDatabaseEloquentBuilder;
use IlluminateDatabaseEloquentModel;
use IlluminateDatabaseEloquentScope;

class SortRecentScope implements Scope
{
public function apply(Builder $builder, Model $model)
{
$builder->orderBy(‘created_at’, ‘desc’);
}
}

PeterJaap 2020-03-11 23:15:30
And then use static::addGlobalScope(new SortRecentScope); in the boot method of your model
sadeqi125 2020-03-12 08:36:15
how to set tow guard admin and user in laravel
tfilho 2020-03-12 12:46:22
Guys, I’m using Laravel Nova. I’m making a custom tool and I need to check if the authenticated user is admin.
As needed, it is necessary to add a tools method closure to the NovaServiceProvider file:
public function tools()
{
return [
(new PriceTracker)->canSee(function ($request) {
//return false;
//i will check here
//return Auth::guard(‘admin’)->check(); //that way isn’t works
}),
];
}

https://nova.laravel.com/docs/1.0/customization/tools.html#authorization
How do i check?

Tools | Laravel NovaLaravel
Master Your Universe
2020-03-12 14:00:49
<iframe src=”{{url(‘/’)}}/{{$dd->image}}” height=”300″ width=”300″ id=”img1″></iframe>
</span>
<button onclick=”printContent()”>Print </button>
I need help to print image only..please help me..
DesolatorMagno 2020-03-12 15:43:02
sadeqi125 2020-03-12 08:36:15
how to set tow guard admin and user in laravel

I would rather work with roles

ashish1321 2020-03-12 15:49:35
I want to make a custom spreadsheet just like Airtable blank page..
suggest me, how can I do it..?
emiaH1 2020-03-12 16:58:57
Homestead? No input file specified
emiaH1 2020-03-12 17:00:09
Any solution?
theman_behind 2020-03-12 17:13:07
Anyone using homestead?
Alireza1kazemi 2020-03-12 17:59:23
sadeqi125 2020-03-12 08:36:15
how to set tow guard admin and user in laravel

You must first define your guards in config folder ->auth
Change configuration like model,db table ….
You can find more in Documentation…

jnaghiloo 2020-03-12 19:17:08
Hi guys, what should I use instead of attach() in many to many relations
Attach causes duplicate entry!
Kevin Camplone 2020-03-12 20:34:40
jnaghiloo 2020-03-12 19:17:08
Hi guys, what should I use instead of attach() in many to many relations
Attach causes duplicate entry!

sync

jnaghiloo 2020-03-12 20:39:41
Kevin Camplone 2020-03-12 20:34:40
sync

How should I send my data with sync?!
It inserts inverse in pivot table unfortunately!

jnaghiloo 2020-03-12 20:43:27
jnaghiloo 2020-03-12 20:39:41
How should I send my data with sync?!
It inserts inverse in pivot table unfortunately!

Solved👍

Kevin Camplone 2020-03-12 20:48:37
good
tfilho 2020-03-12 22:34:28
How to trasnform this :
$from = [
“John” => {},
“Carl” => {},
]
for this:
$to = [
{“name”:”John”},
{“name”:”Carl”},
]
webkuteer 2020-03-13 07:35:01
Anyone from #hyderabad – Telangana – India here

PM me for a meetup

jnaghiloo 2020-03-13 15:40:41
Hi,
This was my first laravel project that I decided to make it opensource

It is an url shortener and gives you simple analytics.

https://github.com/naghiloo/Affba

Give me a start if you like it 😉

Notice that this group is not Persian 😊🌹

naghiloo/AffbaGitHub
URL Shortener With Statistics. Contribute to naghiloo/Affba development by creating an account on GitHub.
^_* 2020-03-13 16:32:09
Gus..
I want to change column name when I have to table have the same name of column
I want using join jquery for these able
Lynda Lyn 2020-03-13 17:46:11
Salut
Lynda Lyn 2020-03-13 17:46:34
Ya qlq un qui peut me répondre ici en français ?
Larainix 2020-03-13 17:47:27
Lynda Lyn 2020-03-13 17:46:34
Ya qlq un qui peut me répondre ici en français ?

oui oui

Lynda Lyn 2020-03-13 17:47:50
Larainix 2020-03-13 17:47:27
oui oui

Svp j’ai besoin de l’aide

Larainix 2020-03-13 17:48:19
direct au probleme.
Lynda Lyn 2020-03-13 17:49:03
Larainix 2020-03-13 17:47:27
oui oui

Je veux faire de sorte que quand je clique sur une image (more details) ca m’affiche la description de l’article plus l’image et jarrive pas a le faire

Lynda Lyn 2020-03-13 17:49:10
Tu peux m’aider ?
Larainix 2020-03-13 17:52:40
oui simple tu un lien que dois passer en paramètres l’id de ton article et dans le controller tu recupere les paramètres et effectue une requette en bd pour la selection
Lynda Lyn 2020-03-13 17:56:32
laravel_discuss-29471.jpg

PeterJaap 2020-03-13 17:58:54
English!
mrgafury 2020-03-13 18:04:42
hi . i want to use ckeditor in laravel and vuejs . but i cant . it give me error . someone use this ?
mrgafury 2020-03-13 18:04:44
https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/frameworks/vuejs.html#component-events
|