copy
DB::table('owners')-> join('books', 'owners.id', '=', 'books.owner_id') -> get():
DB::table('owners')-> join('books', 'owners.id', '=', 'books.owner_id') -> get():
DB::table('owners')-> leftjoin('books', 'owners.id', '=', 'books.owner_id') -> get();
@if(!$data->isEmpty())
@endif
$array = $query->get()->toArray();
コピーしました
@foreach($articles as $article)
{{$article->created_at->format('Y年m月d日')}}
@endforeach
コピーしました
{!! nl2br(e($data->title)) !!}