IG
Size: a a a
IG
IG
S
P
K
SC
P
K
P
P
K
public function Videoshow( Video $video)
{
abort_unless($video->status, 403);
if (preg_match('%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $video->url, $match)) {
$url = $match[1];
}
$video = $video
->with('post')
->where('type', 0)
->Where('id', '!=', $video->id)
->orderBy('created_at', 'DESC')
->paginate(5);
$news = Post::with('category')
->latest()
->take(6)
->get(['id', 'title', 'created_at', 'counter', 'category_id']);
K
K
K
С
P
public function Videoshow( Video $video)
{
abort_unless($video->status, 403);
if (preg_match('%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $video->url, $match)) {
$url = $match[1];
}
$video = $video
->with('post')
->where('type', 0)
->Where('id', '!=', $video->id)
->orderBy('created_at', 'DESC')
->paginate(5);
$news = Post::with('category')
->latest()
->take(6)
->get(['id', 'title', 'created_at', 'counter', 'category_id']);
K
AP
AP