agnonym
11/19/2021, 3:22 PMSathish
11/19/2021, 3:22 PMSathish
11/19/2021, 3:23 PMSathish
11/19/2021, 3:23 PMpboivin
11/19/2021, 3:24 PMstorage/logs/laravel.log? My guess is probably your MAIL_MAILER configuration.Sathish
11/19/2021, 3:25 PMpboivin
11/19/2021, 3:26 PMMAIL_MAILER=log in .envSathish
11/19/2021, 3:26 PMSathish
11/19/2021, 3:28 PMSathish
11/19/2021, 3:29 PMSathish
11/19/2021, 3:32 PMpboivin
11/19/2021, 3:33 PMpboivin
11/19/2021, 3:33 PMMAIL_MAILER=log, you will find the link in laravel.logSathish
11/19/2021, 3:34 PMSathish
11/19/2021, 3:34 PMpboivin
11/19/2021, 3:34 PMSathish
11/19/2021, 3:34 PMSami
11/20/2021, 2:29 PMSami
11/20/2021, 2:31 PMifox
11/20/2021, 2:34 PMifox
11/20/2021, 2:36 PMSami
11/20/2021, 2:52 PMaleksdish
11/22/2021, 11:03 AMifox
11/22/2021, 11:15 AMifox
11/22/2021, 11:15 AMads
11/22/2021, 3:11 PMads
11/22/2021, 3:21 PMphp
controller
protected $indexColumns = [
'formatted_start' => [
'title' => 'Week Start',
'sort' => false,
'relationship' => 'week',
'field' => 'formatted_start'
],
related model - week
protected $appends = ['formatted_start'];
public function getFormattedStartAttribute()
{
return Carbon::parse($this->start)->format('d/m/Y');
}
From:
https://spectrum.chat/twill/help/carbon-date-on-indexcolumns~7b30b3b2-34e4-4d75-9b89-663d2f3f5fdcpboivin
11/22/2021, 3:55 PM'formatted_start' => [
'title' => 'Week Start',
'sort' => false,
'field' => 'formatted_start'
],
Model:
public function getFormattedStartAttribute()
{
return $this->week->formatted_start;
}ads
11/22/2021, 4:09 PMads
11/22/2021, 4:09 PM