turkmentv/app/Http/Controllers/WebController.php

56 lines
1.3 KiB
PHP
Raw Normal View History

2019-06-01 00:08:36 +00:00
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
2019-07-10 16:11:25 +00:00
use Illuminate\Support\Facades\Mail;
use App\Mail\SendMail;
2019-06-01 00:11:14 +00:00
use App\Models\Menu;
use App\Models\Slider;
use App\Models\News;
use App\Models\Show;
use App\Models\PageSlider;
use App\Models\Description;
use App\Models\Advertisement;
use App\Models\Pagead;
use App\Models\Page;
2019-08-23 12:27:39 +00:00
use App\Models\Topheaderadv;
2019-06-01 00:08:36 +00:00
class WebController extends Controller
{
2019-08-23 13:58:03 +00:00
2019-06-01 00:08:36 +00:00
2019-08-01 10:30:15 +00:00
// public function contacts(){
// return view('web.contact')->with([
// 'title' => 'Turkmen Tv | Habarlashyk',
// 'keywords' => '',
// 'meta_description' => '',
// ]);
// }
// public function habarlashyk(){
// return view('web.habarlashyk')->with([
// 'title' => 'Turkmen Tv | Habarlashyk',
// 'keywords' => '',
// 'meta_description' => '',
// ]);
// }
// public function send(Request $request){
// $data = array(
// 'name' => $request->name,
// 'email' => $request->email,
// 'subject' => $request->subject,
// 'message' => $request->message
// );
// Mail::to('mahabatmudirligi@gmail.com')->send(new SendMail($data));
// return back()->with('success', 'Hatyňyz Üstünlikli ugradyldy.');
2019-07-10 16:11:25 +00:00
2019-08-01 10:30:15 +00:00
// }
2019-06-01 00:08:36 +00:00
}