Compare commits
2 Commits
master
...
extrtech#1
Author | SHA1 | Date |
---|---|---|
|
8e1520621d | 2 years ago |
|
01604b1ce5 | 2 years ago |
2531 changed files with 409 additions and 811302 deletions
@ -1,36 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Console\Commands; |
||||
|
||||
use Illuminate\Console\Command; |
||||
use Illuminate\Support\Facades\Queue; |
||||
|
||||
class CheckQueue extends Command |
||||
{ |
||||
/** |
||||
* The name and signature of the console command. |
||||
* |
||||
* @var string |
||||
*/ |
||||
protected $signature = 'queue:check'; |
||||
|
||||
/** |
||||
* The console command description. |
||||
* |
||||
* @var string |
||||
*/ |
||||
protected $description = 'Check if there is a job in the queue'; |
||||
|
||||
/** |
||||
* Execute the console command. |
||||
* |
||||
* @return int |
||||
*/ |
||||
public function handle() |
||||
{ |
||||
$count = Queue::size(); // Get the number of jobs in the queue |
||||
if ($count > 0) { |
||||
$this->call('queue:process'); // Call the ProcessQueue command if there is a job in the queue |
||||
} |
||||
} |
||||
} |
@ -1,33 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Console\Commands; |
||||
|
||||
use Illuminate\Console\Command; |
||||
use Illuminate\Support\Facades\Queue; |
||||
|
||||
class ProcessQueue extends Command |
||||
{ |
||||
/** |
||||
* The name and signature of the console command. |
||||
* |
||||
* @var string |
||||
*/ |
||||
protected $signature = 'queue:process'; |
||||
|
||||
/** |
||||
* The console command description. |
||||
* |
||||
* @var string |
||||
*/ |
||||
protected $description = 'Process the tasks in the queue'; |
||||
|
||||
/** |
||||
* Execute the console command. |
||||
* |
||||
* @return int |
||||
*/ |
||||
public function handle() |
||||
{ |
||||
Queue::daemon(); // Process the tasks in the queue |
||||
} |
||||
} |
@ -1,15 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers; |
||||
|
||||
use Illuminate\Http\Request; |
||||
use App\Models\AboutUs; |
||||
|
||||
class AboutUsController extends Controller |
||||
{ |
||||
public function index() |
||||
{ |
||||
$about = AboutUs::where('status', true)->first(); |
||||
return view('about', compact('about')); |
||||
} |
||||
} |
@ -1,222 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Http\Resources\SliderResource; |
||||
use App\Models\AboutUs; |
||||
use App\Models\AboutUsPoint; |
||||
use App\Models\User; |
||||
use App\Models\Setting; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class AboutUsController extends Controller |
||||
{ |
||||
/** |
||||
* Display a listing of the resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
|
||||
protected $view = 'admin.about_us.'; |
||||
protected $redirect = 'admin/about_us'; |
||||
public function index() |
||||
{ |
||||
$settings = AboutUs::orderBy('id','DESC'); |
||||
// if(\request('title1')){ |
||||
// $key = \request('title1'); |
||||
// $settings = $settings->where('title1','like','%'.$key.'%'); |
||||
// } |
||||
// if(\request('status')){ |
||||
// $key = \request('status'); |
||||
// $settings = $settings->where('status',$key); |
||||
// } |
||||
$settings = $settings->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for creating a new resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function create() |
||||
{ |
||||
return view($this->view.'create'); |
||||
} |
||||
|
||||
/** |
||||
* Store a newly created resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function store(Request $request) |
||||
{ |
||||
|
||||
$this->validate(\request(),[ |
||||
|
||||
|
||||
'description' => 'required', |
||||
'sub_description' => 'required', |
||||
'bottom_description' => 'required', |
||||
// 'image' => 'required|file|mimes:jpeg,png,jpg', |
||||
// 'keyword' => 'required' |
||||
]); |
||||
|
||||
$setting = new AboutUs(); |
||||
|
||||
$setting->description = (\request('description')); |
||||
$setting->sub_description = (\request('sub_description')); |
||||
$setting->bottom_description = \request('bottom_description'); |
||||
$setting->status = \request('status'); |
||||
$setting->title = \request('title'); |
||||
$setting->bottom_title = \request('bottom_title'); |
||||
$setting->keyword = \request('keyword'); |
||||
$setting->point_title = strip_tags(\request('point_title')); |
||||
$setting->seo_title = \request('seo_title'); |
||||
$setting->meta_keyword = strip_tags(\request('meta_keyword')); |
||||
$setting->seo_description = strip_tags(\request('seo_description')); |
||||
$setting->slug = Setting::create_slug(\request('seo_title')); |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('about_us',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
if($extension == "jpeg" || $extension == "jpg" || $extension == "png"){ |
||||
$image_path = $out_put_path[0]; |
||||
$setting->image = $image_path; |
||||
// $setting->doc_name = $out_put_path[2]; |
||||
} |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
if($setting->save()){ |
||||
$points = $request->points; |
||||
if($points[0] != null){ |
||||
foreach($points as $key => $point){ |
||||
|
||||
$about_us_point = new AboutUsPoint(); |
||||
|
||||
$about_us_point->about_us_id = $setting->id; |
||||
|
||||
|
||||
$about_us_point->point = $point; |
||||
$about_us_point->save(); |
||||
} |
||||
} |
||||
|
||||
Session::flash('success','About Us has been created!'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* Display the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function show($id) |
||||
{ |
||||
$about_us = AboutUs::findorfail($id); |
||||
return view($this->view.'show',compact('about_us')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for editing the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function edit($id) |
||||
{ |
||||
$about_us = AboutUs::findorfail($id); |
||||
return view($this->view.'edit',compact('about_us')); |
||||
} |
||||
|
||||
/** |
||||
* Update the specified resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function update(Request $request, $id) |
||||
{ |
||||
// dd($request->all()); |
||||
$setting=AboutUs::findorfail($id); |
||||
|
||||
$this->validate(\request(),[ |
||||
// 'keyword' => 'required', |
||||
'description' => 'required', |
||||
'sub_description' => 'required', |
||||
// 'image' => 'file|mimes:jpeg,png,jpg', |
||||
'status' => 'required' |
||||
]); |
||||
|
||||
|
||||
|
||||
$setting->description = (\request('description')); |
||||
$setting->sub_description = (\request('sub_description')); |
||||
$setting->bottom_description = \request('bottom_description'); |
||||
$setting->status = \request('status'); |
||||
$setting->title = \request('title'); |
||||
$setting->bottom_title = \request('bottom_title'); |
||||
$setting->keyword = \request('keyword'); |
||||
$setting->seo_title = \request('seo_title'); |
||||
$setting->meta_keyword = strip_tags(\request('meta_keyword')); |
||||
$setting->seo_description = strip_tags(\request('seo_description')); |
||||
$setting->point_title = strip_tags(\request('point_title')); |
||||
$setting->slug = Setting::create_slug(\request('seo_title')); |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('about_us',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path = $out_put_path[0]; |
||||
$setting->image = $image_path; |
||||
// $setting->doc_name = $out_put_path[2]; |
||||
} |
||||
// $requestData = $request->all(); |
||||
// $setting->fill($requestData); |
||||
if($setting->update()){ |
||||
// $points = $request->points; |
||||
|
||||
// if((!empty($points)) && ($points[0] != null)){ |
||||
// $about_us_point = $setting->about_us_points(); |
||||
// $about_us_point->delete(); |
||||
// foreach($points as $point){ |
||||
// $about_us_point = new AboutUsPoint(); |
||||
// $about_us_point->about_us_id = $id; |
||||
// $about_us_point->point = $point; |
||||
// $about_us_point->save(); |
||||
// } |
||||
// } |
||||
Session::flash('success','About Us has been Updated!'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* Remove the specified resource from storage. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function destroy($id) |
||||
{ |
||||
// |
||||
} |
||||
|
||||
public function getSliders(){ |
||||
|
||||
$settings = Slider::where('status',1)->get(); |
||||
return SliderResource::collection($settings); |
||||
} |
||||
} |
@ -1,112 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\AddSection; |
||||
use App\Models\Project; |
||||
use App\Models\User; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class AddSectionController extends Controller |
||||
{ |
||||
protected $view = 'admin.add_section.'; |
||||
protected $redirect = 'admin/add-sections'; |
||||
|
||||
|
||||
public function index(){ |
||||
$settings = AddSection::orderBy('id','asc'); |
||||
if(\request('status')){ |
||||
$key = \request('status'); |
||||
$settings = $settings->where('status',$key); |
||||
} |
||||
$settings = $settings->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
public function create(){ |
||||
|
||||
return view($this->view.'create'); |
||||
|
||||
} |
||||
|
||||
public function store(Request $request){ |
||||
$this->validate(\request(),[ |
||||
'link'=>'required|string', |
||||
'image'=>'required|file|mimes:jpeg,png,jpg,pdf' |
||||
]); |
||||
|
||||
if($request->has('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('add_section',config('custom.image_folders')); |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
} |
||||
$requestData = $request->all(); |
||||
if(isset($image_path1)){ |
||||
$requestData['image'] = $image_path1; |
||||
} |
||||
|
||||
$setting = AddSection::create($requestData); |
||||
Session::flash('success','Section is created'); |
||||
return redirect($this->redirect); |
||||
|
||||
|
||||
} |
||||
|
||||
public function edit($id){ |
||||
|
||||
$setting = AddSection::findorfail($id); |
||||
return view($this->view.'edit',compact('setting')); |
||||
} |
||||
|
||||
public function update(Request $request , $id){ |
||||
$setting =AddSection::findorfail($id); |
||||
$this->validate(\request(), [ |
||||
'link'=>'required|string', |
||||
'image' => 'file|mimes:jpeg,png,jpg,pdf', |
||||
]); |
||||
|
||||
|
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
|
||||
// |
||||
$image_folder_type = array_search('project',config('custom.image_folders')); //for image saved in folder search project index in config folder |
||||
|
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
if (is_file(public_path().'/'.$setting->image) && file_exists(public_path().'/'.$setting->image)){ |
||||
unlink(public_path().'/'.$setting->image); |
||||
} |
||||
} |
||||
|
||||
$requestData = $request->all(); |
||||
if(isset($image_path1)){ |
||||
$requestData['image'] = $image_path1; |
||||
} |
||||
|
||||
$setting->fill($requestData); |
||||
$setting->save(); |
||||
Session::flash('success','Section is Updated'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
|
||||
public function delete($id){ |
||||
|
||||
$setting=AddSection::findorfail($id); |
||||
if($setting->delete()){ |
||||
if (is_file(public_path().'/'.$setting->image) && file_exists(public_path().'/'.$setting->image)){ |
||||
unlink(public_path().'/'.$setting->image); |
||||
} |
||||
} |
||||
Session::flash('success','Section is deleted !'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
// |
||||
} |
@ -1,27 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\Applicant; |
||||
use App\Models\User; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class ApplicantController extends Controller |
||||
{ |
||||
protected $view='admin.applicant.'; |
||||
protected $redirect='admin/applicants'; |
||||
|
||||
public function index(){ |
||||
$settings=Applicant::paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
public function show($id){ |
||||
|
||||
$applicants = Applicant::findorfail($id); |
||||
return view($this->view.'show',compact('applicants')); |
||||
|
||||
} |
||||
} |
@ -1,155 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
|
||||
|
||||
use App\Models\Appointment; |
||||
use Illuminate\Http\Request; |
||||
use Carbon\Carbon; |
||||
|
||||
class AppointmentController extends Controller |
||||
{ |
||||
protected $view = 'admin.appointment.'; |
||||
protected $redirect = 'admin/appointments'; |
||||
// protected $service; |
||||
|
||||
public function education_appointments() |
||||
{ |
||||
$appointments = Appointment::where('service_type', '1')->orderBy('id', 'DESC'); |
||||
if (\request('date')) { |
||||
$date = \request('date'); |
||||
$appointments = $appointments->whereDate('date', $date); |
||||
} |
||||
if (\request('status')) { |
||||
$status = \request('status'); |
||||
$appointments = $appointments->where('status', $status); |
||||
} |
||||
if (\request('is_booked')) { |
||||
$is_booked = (\request('is_booked')) == '1' ? true : false; |
||||
$appointments = $appointments->where('is_booked', $is_booked); |
||||
} |
||||
$appointments = $appointments->paginate(20); |
||||
$service = 'Education'; |
||||
$is_booked = $is_booked ?? null; |
||||
$date = $date ?? null; |
||||
$status = $status ?? null; |
||||
return view($this->view . 'index', compact('appointments', 'service', 'is_booked', 'date', 'status')); |
||||
} |
||||
|
||||
public function visa_appointments() |
||||
{ |
||||
$appointments = Appointment::where('service_type', '2')->orderBy('id', 'DESC'); |
||||
if (\request('date')) { |
||||
$date = \request('date'); |
||||
$appointments = $appointments->whereDate('date', $date); |
||||
} |
||||
if (\request('status')) { |
||||
$status = \request('status'); |
||||
$appointments = $appointments->where('status', $status); |
||||
} |
||||
if (\request('is_booked')) { |
||||
|
||||
$is_booked = (\request('is_booked')) == '1' ? true : false; |
||||
$appointments = $appointments->where('is_booked', $is_booked); |
||||
} |
||||
$appointments = $appointments->paginate(20); |
||||
$is_booked = $is_booked ?? null; |
||||
$date = $date ?? null; |
||||
$status = $status ?? null; |
||||
$service = 'Migration|Visa'; |
||||
return view($this->view . 'index', compact('appointments', 'service', 'is_booked', 'date', 'status')); |
||||
} |
||||
|
||||
public function create() |
||||
{ |
||||
return view($this->view . 'create'); |
||||
} |
||||
|
||||
public function store(Request $request) |
||||
{ |
||||
$request->validate([ |
||||
'date' => 'required|date', |
||||
'start_time' => 'required|date_format:H:i', |
||||
'end_time' => 'required|date_format:H:i', |
||||
]); |
||||
$start_time = Carbon::createFromFormat('H:i', $request->get('start_time'))->format('H:i A'); |
||||
$end_time = Carbon::createFromFormat('H:i', $request->get('end_time'))->format('H:i A'); |
||||
|
||||
$appointment = new Appointment([ |
||||
'date' => $request->get('date'), |
||||
'start_time' => $start_time, |
||||
'end_time' => $end_time, |
||||
'location' => $request->get('location'), |
||||
'description' => $request->get('description'), |
||||
'service_type' => $request->get('service_type'), |
||||
]); |
||||
|
||||
$appointment->save(); |
||||
if($request->get('service_type') == "1"){ |
||||
$service = 'education'; |
||||
}else{ |
||||
$service = 'visa'; |
||||
} |
||||
|
||||
return redirect($this->redirect.'/'.$service)->with('success', 'Appointment has been added'); |
||||
} |
||||
|
||||
public function edit($id) |
||||
{ |
||||
$appointment = Appointment::findorfail($id); |
||||
$start_time = explode(" ", $appointment->start_time); |
||||
$start_time = $start_time[0]; |
||||
|
||||
$end_time = explode(" ", $appointment->end_time); |
||||
$end_time = $end_time[0]; |
||||
$appointment['start_time'] = $start_time; |
||||
$appointment['end_time'] = $end_time; |
||||
return view($this->view . 'edit', compact('appointment')); |
||||
} |
||||
|
||||
public function update(Request $request, $id) |
||||
{ |
||||
|
||||
$request->validate([ |
||||
'date' => 'required|date', |
||||
'start_time' => 'required|date_format:H:i', |
||||
'end_time' => 'required|date_format:H:i', |
||||
]); |
||||
$start_time = Carbon::createFromFormat('H:i', $request->get('start_time'))->format('H:i A'); |
||||
$end_time = Carbon::createFromFormat('H:i', $request->get('end_time'))->format('H:i A'); |
||||
|
||||
$appointment = Appointment::find($id); |
||||
$appointment->date = $request->get('date'); |
||||
$appointment->start_time = $start_time; |
||||
$appointment->end_time = $end_time; |
||||
$appointment->location = $request->get('location'); |
||||
$appointment->description = $request->get('description'); |
||||
$appointment->service_type = $request->get('service_type'); |
||||
$appointment->status = $request->get('status'); |
||||
$appointment->save(); |
||||
if($request->get('service_type') == "1"){ |
||||
$service = 'education'; |
||||
}else{ |
||||
$service = 'visa'; |
||||
} |
||||
|
||||
return redirect($this->redirect.'/'.$service)->with('success', 'Appointment has been updated'); |
||||
} |
||||
|
||||
public function show($id) |
||||
{ |
||||
$appointment = Appointment::with('appointment_booking_detail')->findorfail($id); |
||||
|
||||
return view($this->view . 'show', compact('appointment')); |
||||
} |
||||
|
||||
public function destroy($id) |
||||
{ |
||||
$appointment = Appointment::find($id); |
||||
$appointment->delete(); |
||||
|
||||
return redirect($this->redirect)->with('success', 'Appointment has been deleted'); |
||||
} |
||||
} |
@ -1,206 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Http\Resources\SliderResource; |
||||
use App\Models\Career; |
||||
use App\Models\CareerPoint; |
||||
use App\Models\AboutUsPoint; |
||||
use App\Models\User; |
||||
use App\Models\Setting; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class CareerController extends Controller |
||||
{ |
||||
/** |
||||
* Display a listing of the resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
|
||||
protected $view = 'admin.career.'; |
||||
protected $redirect = 'admin/careers'; |
||||
public function index() |
||||
{ |
||||
$settings = Career::orderBy('id','DESC'); |
||||
// if(\request('title1')){ |
||||
// $key = \request('title1'); |
||||
// $settings = $settings->where('title1','like','%'.$key.'%'); |
||||
// } |
||||
// if(\request('status')){ |
||||
// $key = \request('status'); |
||||
// $settings = $settings->where('status',$key); |
||||
// } |
||||
$settings = $settings->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for creating a new resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function create() |
||||
{ |
||||
return view($this->view.'create'); |
||||
} |
||||
|
||||
/** |
||||
* Store a newly created resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function store(Request $request) |
||||
{ |
||||
$this->validate(\request(),[ |
||||
|
||||
|
||||
'title' => 'required', |
||||
'sub_title' => 'required', |
||||
'point_title' => 'required', |
||||
|
||||
'image' => 'required|file|mimes:jpeg,png,jpg', |
||||
'points' => 'required' |
||||
]); |
||||
|
||||
$setting = new Career(); |
||||
|
||||
$setting->title = \request('title'); |
||||
$setting->point_title = strip_tags(\request('point_title')); |
||||
$setting->sub_title = strip_tags(\request('sub_title')); |
||||
$setting->status = \request('status'); |
||||
$setting->keyword = strip_tags(\request('keyword')); |
||||
$setting->seo_title = strip_tags(\request('seo_title')); |
||||
$setting->meta_keyword = strip_tags(\request('meta_keyword')); |
||||
$setting->seo_description = strip_tags(\request('seo_description')); |
||||
$setting->slug = Setting::create_slug(\request('seo_title')); |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('career',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
if($extension == "jpeg" || $extension == "jpg" || $extension == "png"){ |
||||
$image_path = $out_put_path[0]; |
||||
$setting->image = $image_path; |
||||
// $setting->doc_name = $out_put_path[2]; |
||||
} |
||||
} |
||||
|
||||
if($setting->save()){ |
||||
$points = $request->points; |
||||
|
||||
foreach($points as $point){ |
||||
$career_point = new CareerPoint(); |
||||
$career_point->career_id = $setting->id; |
||||
$career_point->point = $point; |
||||
$career_point->save(); |
||||
} |
||||
Session::flash('success','Career has been created!'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* Display the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function show($id) |
||||
{ |
||||
$about_us = Career::findorfail($id); |
||||
return view($this->view.'show',compact('about_us')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for editing the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function edit($id) |
||||
{ |
||||
$about_us = Career::findorfail($id); |
||||
return view($this->view.'edit',compact('about_us')); |
||||
} |
||||
|
||||
/** |
||||
* Update the specified resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function update(Request $request, $id) |
||||
{ |
||||
$setting=Career::findorfail($id); |
||||
|
||||
$this->validate(\request(),[ |
||||
'title' => 'required', |
||||
'sub_title' => 'required', |
||||
// 'image' => 'file|mimes:jpeg,png,jpg', |
||||
'points' => 'required' |
||||
]); |
||||
|
||||
|
||||
|
||||
$setting->title = \request('title'); |
||||
$setting->point_title = strip_tags(\request('point_title')); |
||||
$setting->sub_title = strip_tags(\request('sub_title')); |
||||
$setting->status = \request('status'); |
||||
$setting->keyword = strip_tags(\request('keyword')); |
||||
$setting->seo_title = strip_tags(\request('seo_title')); |
||||
$setting->meta_keyword = strip_tags(\request('meta_keyword')); |
||||
$setting->seo_description = strip_tags(\request('seo_description')); |
||||
$setting->slug = Setting::create_slug(\request('seo_title')); |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('career',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path = $out_put_path[0]; |
||||
$setting->image = $image_path; |
||||
// $setting->doc_name = $out_put_path[2]; |
||||
} |
||||
// $requestData = $request->all(); |
||||
// $setting->fill($requestData); |
||||
if($setting->update()){ |
||||
$points = $request->points; |
||||
|
||||
if((!empty($points)) && ($points[0] != null)){ |
||||
$career_point = $setting->career_points(); |
||||
$career_point->delete(); |
||||
foreach($points as $point){ |
||||
$career_point = new CareerPoint(); |
||||
$career_point->career_id = $id; |
||||
$career_point->point = $point; |
||||
$career_point->save(); |
||||
} |
||||
} |
||||
Session::flash('success','Career has been Updated!'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* Remove the specified resource from storage. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function destroy($id) |
||||
{ |
||||
// |
||||
} |
||||
|
||||
public function getSliders(){ |
||||
|
||||
$settings = Slider::where('status',1)->get(); |
||||
return SliderResource::collection($settings); |
||||
} |
||||
} |
@ -1,89 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\Client; |
||||
use App\Models\Client as Setting; |
||||
use App\Models\User; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class ClientController extends Controller |
||||
{ |
||||
protected $view = 'admin.client.'; |
||||
protected $redirect = 'admin/clients'; |
||||
|
||||
public function index() |
||||
{ |
||||
$settings = Setting::paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
public function create() |
||||
{ |
||||
return view($this->view.'create'); |
||||
} |
||||
|
||||
public function store(Request $request) |
||||
{ |
||||
$this->validate(\request(),[ |
||||
'logo' =>'required|file|mimes:jpeg,png,jpg,pdf', |
||||
'link' =>'required', |
||||
'status' =>'required', |
||||
]); |
||||
|
||||
if(\request('logo')){ |
||||
if($request->hasFile('logo')){ |
||||
$extension = \request()->file('logo')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('client',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('logo'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
} |
||||
} |
||||
$requestData = $request->all(); |
||||
if(isset($image_path1)){ |
||||
$requestData['logo'] = $image_path1; |
||||
} |
||||
|
||||
Setting::create($requestData); |
||||
Session::flash('success','Testimonial is created!'); |
||||
return redirect($this->redirect); |
||||
} |
||||
public function edit($id){ |
||||
$setting= Client::findorfail($id); |
||||
return view($this->view.'edit',compact('setting')); |
||||
} |
||||
|
||||
public function update(Request $request ,$id){ |
||||
$setting = Client::findorfail($id); |
||||
$this->validate(\request(),[ |
||||
'logo' =>'file|mimes:jpeg,png,jpg,pdf', |
||||
'link' =>'required', |
||||
'status' =>'required', |
||||
]); |
||||
|
||||
if(\request('logo')){ |
||||
if($request->hasFile('logo')){ |
||||
$extension = \request()->file('logo')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('client',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('logo'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
} |
||||
} |
||||
$requestData = $request->all(); |
||||
if(isset($image_path1)){ |
||||
$requestData['logo'] = $image_path1; |
||||
} |
||||
|
||||
$setting->fill($requestData); |
||||
$setting->save(); |
||||
Session::flash('success','Testimonial is Updated!'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
|
||||
|
||||
} |
@ -1,99 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use Illuminate\Http\Request; |
||||
use App\Models\Contact; |
||||
use App\Models\ContactDescription; |
||||
use Illuminate\Support\Facades\Session; |
||||
use Mail; |
||||
|
||||
class ContactUsController extends Controller |
||||
{ |
||||
protected $view = 'admin.contact.'; |
||||
protected $redirect = 'admin/contacts'; |
||||
|
||||
public function index() |
||||
{ |
||||
$settings = Contact::orderBy('id','DESC'); |
||||
if(\request('fullname')){ |
||||
$key = \request('fullname'); |
||||
$settings = $settings->where('fullname','like','%'.$key.'%'); |
||||
} |
||||
if(\request('status')){ |
||||
$key = \request('status'); |
||||
$settings = $settings->where('status',$key); |
||||
} |
||||
$contacts = $settings->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('contacts')); |
||||
} |
||||
|
||||
public function show($id) |
||||
{ |
||||
|
||||
$contact = new Contact(); |
||||
|
||||
|
||||
$contact = $contact->findorfail($id); |
||||
|
||||
|
||||
return view($this->view . 'show', compact('contact')); |
||||
} |
||||
public function store(Request $request){ |
||||
|
||||
$this->validate(\request(),[ |
||||
'name' => 'required', |
||||
'email' => 'required|indisposable', |
||||
'phone' => 'required|digits:10', |
||||
|
||||
]); |
||||
|
||||
|
||||
$contact = new ContactUs(); |
||||
$contact->name = \request('name'); |
||||
$contact->email = \request('email'); |
||||
$contact->phone = \request('phone'); |
||||
$contact->query_type = \request('query_type'); |
||||
$contact->status = 1; |
||||
$contact->email_verified_at = \request('email_verified_at'); |
||||
|
||||
if($contact->save()){ |
||||
|
||||
$contact_description = new ContactDescription(); |
||||
$contact_description->contact_us_id = $contact->id; |
||||
$contact_description->contact_us_type = \request('contact_us_type'); |
||||
$contact_description->message = \request('message'); |
||||
$contact_description->save(); |
||||
|
||||
\Mail::send('admin.contact.mail', array( |
||||
|
||||
'name' =>\request('name'), |
||||
|
||||
'email' =>\request('email'), |
||||
|
||||
'query_type' => (\request('query_type') == '1') ? 'Contact' : 'Quick Enquiry', |
||||
|
||||
'contact_us_type' =>(\request('contact_us_type') == '1') ? 'Academic' : 'Service', |
||||
|
||||
'phone' =>\request('phone'), |
||||
|
||||
'msg' => \request('message'), |
||||
|
||||
'subject' => 'Contact Form', |
||||
|
||||
), function($message) use ($request){ |
||||
|
||||
$subject='Contact Form'; |
||||
|
||||
$message->to('info@extratechs.com.au', 'Extratech')->subject($subject); |
||||
|
||||
}); |
||||
|
||||
return response()->json(['success' => 'Your query is submitted successfully.','status' =>'Ok'],200); |
||||
|
||||
} |
||||
|
||||
} |
||||
|
||||
} |
@ -1,62 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\department; |
||||
use App\Models\SubOffice; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class DepartmentController extends Controller |
||||
{ |
||||
protected $view='admin.department.'; |
||||
protected $redirect='admin/departments'; |
||||
|
||||
public function index(){ |
||||
$settings = department::Paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
public function create(){ |
||||
$settings=SubOffice::all(); |
||||
return view($this->view.'create',compact('settings')); |
||||
} |
||||
|
||||
public function store(Request $request){ |
||||
$this->validate(\request(),[ |
||||
'name'=>'required|string', |
||||
'sub_office_id'=>'required', |
||||
]); |
||||
$requestData=$request->all(); |
||||
$setting=department::create($requestData); |
||||
Session::flash('success','Department is created'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
public function edit($id){ |
||||
$settings=department::findorfail($id); |
||||
$sub_offices=SubOffice::all(); |
||||
return view($this->view.'edit',compact('settings'),compact('sub_offices')); |
||||
} |
||||
|
||||
public function update(Request $request ,$id){ |
||||
$setting =department::findorfail($id); |
||||
|
||||
$this->validate(\request(),[ |
||||
'name'=>'required|string', |
||||
'sub_office_id'=>'required', |
||||
]); |
||||
$requestData=$request->all(); |
||||
$setting->fill($requestData); |
||||
$setting->save(); |
||||
Session::flash('success','Department is Updated'); |
||||
return redirect($this->redirect); |
||||
|
||||
|
||||
} |
||||
|
||||
public function delete(){ |
||||
|
||||
} |
||||
} |
@ -1,37 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use Illuminate\Http\Request; |
||||
use App\Models\ContactUs; |
||||
use App\Models\ContactDescription; |
||||
use App\Models\PersonalDetail; |
||||
use Illuminate\Support\Facades\Session; |
||||
use Mail; |
||||
|
||||
class EnrollmentController extends Controller |
||||
{ |
||||
protected $view = 'admin.enrollment.'; |
||||
protected $redirect = 'admin/enrollments'; |
||||
|
||||
public function index() |
||||
{ |
||||
$personal_details = PersonalDetail::paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('personal_details')); |
||||
} |
||||
|
||||
public function show($id) |
||||
{ |
||||
|
||||
$personal_detail = new PersonalDetail(); |
||||
|
||||
|
||||
$personal_detail = $personal_detail->findorfail($id); |
||||
|
||||
|
||||
return view($this->view . 'show', compact('personal_detail')); |
||||
} |
||||
|
||||
|
||||
} |
@ -1,77 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\Service; |
||||
use App\Models\ServiceOld; |
||||
use App\Models\Faq; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class FaqController extends Controller |
||||
{ |
||||
protected $view= 'admin.faq.'; |
||||
protected $redirect = 'admin/faqs'; |
||||
|
||||
|
||||
public function index(){ |
||||
$settings = Faq::paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
public function create(){ |
||||
$settings = Service::get(); |
||||
return view($this->view.'create',compact('settings')); |
||||
} |
||||
|
||||
public function store(Request $request){ |
||||
$this->validate(\request(), [ |
||||
'question' =>'required|string', |
||||
'answer'=>'required', |
||||
'status' => 'required', |
||||
|
||||
]); |
||||
|
||||
$requestData = $request->all(); |
||||
$setting = Faq::create($requestData); |
||||
Session::flash('success','FAQ is created'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
|
||||
public function edit($id){ |
||||
$setting = Faq::findorfail($id); |
||||
$services = Service::all(); |
||||
return view($this->view.'edit',compact('setting'),compact('services')); |
||||
} |
||||
|
||||
public function update(Request $request, $id){ |
||||
|
||||
$setting =Faq::findorfail($id); |
||||
$this->validate(\request(), [ |
||||
'question' =>'required|string', |
||||
'answer'=>'required', |
||||
'status' => 'required', |
||||
|
||||
]); |
||||
|
||||
$requestData = $request->all(); |
||||
$setting->fill($requestData); |
||||
$setting->save(); |
||||
Session::flash('success','FAQ is Updated'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
public function show($id) |
||||
{ |
||||
|
||||
$faq = new Faq(); |
||||
|
||||
|
||||
$setting = $faq->findorfail($id); |
||||
|
||||
|
||||
return view($this->view . 'show', compact('setting')); |
||||
} |
||||
} |
@ -1,152 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\Academy; |
||||
use App\Models\Gallery; |
||||
use App\Models\BlogPoint; |
||||
use App\Models\NewsAndUpdatePoint; |
||||
use App\Models\Setting; |
||||
use App\Models\User; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Auth; |
||||
use Illuminate\Support\Facades\Session; |
||||
use function GuzzleHttp\Promise\all; |
||||
|
||||
class GalleryController extends Controller |
||||
{ |
||||
protected $view = 'admin.gallery.'; |
||||
protected $redirect = 'admin/galleries'; |
||||
|
||||
public function index() |
||||
{ |
||||
$settings = Gallery::orderBy('id','DESC'); |
||||
|
||||
if(\request('name')){ |
||||
$key = \request('name'); |
||||
$settings = $settings->where('title','like','%'.$key.'%'); |
||||
} |
||||
if(\request('status')){ |
||||
$key = \request('status'); |
||||
$settings = $settings->where('status',$key); |
||||
} |
||||
$settings = $settings->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
public function create() |
||||
{ |
||||
return view($this->view . 'create'); |
||||
} |
||||
|
||||
public function store(Request $request) |
||||
{ |
||||
|
||||
|
||||
$this->validate(\request(), [ |
||||
|
||||
'seo_title' => 'nullable', |
||||
'seo_description' => 'nullable', |
||||
|
||||
'keyword' => 'required', |
||||
'meta-keyword' => 'nullable', |
||||
'status' => 'required', |
||||
'image' => 'required|file|mimes:jpeg,png,jpg,pdf' |
||||
]); |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('gallery',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
} |
||||
|
||||
$requestData = $request->all(); |
||||
if(isset($image_path1)){ |
||||
$requestData['image'] = $image_path1; |
||||
} |
||||
|
||||
$requestData['slug'] = Setting::create_slug($requestData['keyword']); |
||||
$setting = Gallery::create($requestData); |
||||
|
||||
Session::flash('success','Gallery successfully created'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
public function show($id) |
||||
{ |
||||
$setting =Gallery::findorfail($id); |
||||
return view($this->view.'show',compact('setting')); |
||||
} |
||||
|
||||
public function edit($id){ |
||||
$setting =Gallery::findorfail($id); |
||||
return view($this->view.'edit',compact('setting')); |
||||
} |
||||
|
||||
public function update(Request $request, $id){ |
||||
|
||||
// dd(\request()->all()); |
||||
$setting =Gallery::findorfail($id); |
||||
$this->validate(\request(), [ |
||||
'seo_title' => 'nullable', |
||||
'seo_description' => 'nullable', |
||||
'keyword' => 'required', |
||||
'meta-keyword' => 'nullable', |
||||
'status' => 'required', |
||||
]); |
||||
|
||||
if(\request('image')){ |
||||
$this->validate(\request(),[ |
||||
'image' => 'file|mimes:jpeg,png,jpg,pdf' |
||||
]); |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('gallery',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
if (is_file(public_path().'/'.$setting->image) && file_exists(public_path().'/'.$setting->image)){ |
||||
unlink(public_path().'/'.$setting->image); |
||||
} |
||||
} |
||||
} |
||||
|
||||
|
||||
$requestData = $request->all(); |
||||
$requestData['slug'] = Setting::create_slug($requestData['keyword']); |
||||
if(isset($image_path1)){ |
||||
$requestData['image'] = $image_path1; |
||||
} |
||||
$setting->fill($requestData); |
||||
$setting->save(); |
||||
|
||||
Session::flash('success','Gallery succesffuly updated.'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
|
||||
public function delete($id){ |
||||
$setting=Gallery::findorfail($id); |
||||
|
||||
if($setting->delete()){ |
||||
if (is_file(public_path().'/'.$setting->image) && file_exists(public_path().'/'.$setting->image)){ |
||||
unlink(public_path().'/'.$setting->image); |
||||
} |
||||
} |
||||
Session::flash('success','Gallery is deleted !'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
// public function blog_point($blog_point_id) |
||||
// { |
||||
// if(Auth::user()){ |
||||
// $setting = BlogPoint::findorfail($blog_point_id); |
||||
// $setting->delete(); |
||||
// return response()->json(['blog_point_id' => $blog_point_id]); |
||||
// } |
||||
|
||||
// } |
||||
|
||||
} |
@ -1,98 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\Contact; |
||||
use App\Models\Enquiry; |
||||
use App\Models\Subscription; |
||||
use App\Models\VisaService; |
||||
use App\Models\Service; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Routing\Route; |
||||
use Illuminate\Support\Facades\Auth; |
||||
use Illuminate\Support\Facades\Session; |
||||
use Illuminate\Support\Facades\Hash; |
||||
|
||||
use App\Models\User; |
||||
|
||||
class HomeController extends Controller |
||||
{ |
||||
public function indexAdmin() |
||||
{ |
||||
if(Auth::check()){ |
||||
$visa_service= VisaService::where('status',true); |
||||
$education_service= Service::where('status',true); |
||||
$enquiry= Enquiry::all(); |
||||
$contact= Contact::all(); |
||||
$subscription= Subscription::all(); |
||||
$contacts = Contact::paginate(config('custom.per_page')); |
||||
// $referrals=Referral::paginate(config('custom.per_page')); |
||||
return view('admin.index', compact( 'visa_service', 'education_service', 'enquiry', 'contacts','contact','subscription')); |
||||
} |
||||
return view('admin.login'); |
||||
} |
||||
|
||||
public function getLogin() |
||||
{ |
||||
if(Auth::check()){ |
||||
return redirect('admin/index'); |
||||
} |
||||
return view('admin.login'); |
||||
} |
||||
public function postLogin() |
||||
{ |
||||
$this->validate(request(),[ |
||||
'email'=>'required', |
||||
'password'=>'required', |
||||
]); |
||||
// dd(\request()->all()); |
||||
|
||||
|
||||
|
||||
if (Auth::attempt(['email'=>request('email'),'password'=>request('password')],request()->has('remember'))){ |
||||
return redirect('admin/index'); |
||||
} |
||||
// Session::flash('success','Invalid Credential!'); |
||||
return redirect('login')->withErrors(['Invalid Credentials!']); |
||||
} |
||||
|
||||
public function admin() |
||||
{ |
||||
if(Auth::check()){ |
||||
return view('admin.index'); |
||||
} |
||||
} |
||||
|
||||
public function getLogout() |
||||
{ |
||||
Auth::logout(); |
||||
return redirect('login'); |
||||
} |
||||
|
||||
public function change_password(){ |
||||
return view('admin.change_password_form'); |
||||
} |
||||
|
||||
public function update_password(Request $request){ |
||||
$request->validate([ |
||||
'old_password' => 'required', |
||||
'password' => 'required|min:8|confirmed', |
||||
]); |
||||
$user = auth()->user(); |
||||
|
||||
if(Hash::check($request->old_password,$user->password)){ |
||||
|
||||
$user = User::findorfail($user->id); |
||||
if($user->update(['password' => Hash::make($request->password)])){ |
||||
return redirect()->back()->with('success','Password is successfully updated.'); |
||||
} |
||||
} |
||||
return redirect()->back()->with('custom_error','Your old password is incorrect! Please try again.'); |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
} |
||||
} |
@ -1,26 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers; |
||||
|
||||
use Illuminate\Http\Request; |
||||
|
||||
class ImageUploadController extends Controller |
||||
{ |
||||
public function storeImage(Request $request) |
||||
{ |
||||
if ($request->hasFile('upload')) { |
||||
$finfo = finfo_open(FILEINFO_MIME_TYPE); // Return MIME type a la the 'mimetype' extension |
||||
$mimeType = finfo_file($finfo, $request->file('upload')); |
||||
finfo_close($finfo); |
||||
if ($mimeType == 'image/jpeg' || $mimeType == 'image/png' || $mimeType == 'image/svg+xml' || $mimeType == 'image/gif' || $mimeType == 'image/webp') { |
||||
$originName = $request->file('upload')->getClientOriginalName(); |
||||
$fileName = pathinfo($originName, PATHINFO_FILENAME); |
||||
$extension = $request->file('upload')->getClientOriginalExtension(); |
||||
$fileName = $fileName . '_' . time() . '.' . $extension; |
||||
$request->file('upload')->move(public_path('images/media'), $fileName); |
||||
$url = asset('images/media/' . $fileName); |
||||
return response()->json(['fileName' => $fileName, 'uploaded'=> 1, 'url' => $url]); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -1,204 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\Academy; |
||||
use App\Models\NewsAndUpdate; |
||||
use App\Models\BlogPoint; |
||||
use App\Models\NewsAndUpdatePoint; |
||||
use App\Models\Setting; |
||||
use App\Models\User; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Auth; |
||||
use Illuminate\Support\Facades\Session; |
||||
use function GuzzleHttp\Promise\all; |
||||
|
||||
class NewsAndUpdateController extends Controller |
||||
{ |
||||
protected $view = 'admin.news_and_update.'; |
||||
protected $redirect = 'admin/blogs'; |
||||
|
||||
public function index() |
||||
{ |
||||
$settings = NewsAndUpdate::orderBy('id','DESC'); |
||||
|
||||
if(\request('name')){ |
||||
$key = \request('name'); |
||||
$settings = $settings->where('title','like','%'.$key.'%'); |
||||
} |
||||
if(\request('status')){ |
||||
$key = \request('status'); |
||||
$settings = $settings->where('status',$key); |
||||
} |
||||
$settings = $settings->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
public function create() |
||||
{ |
||||
return view($this->view . 'create'); |
||||
} |
||||
|
||||
public function store(Request $request) |
||||
{ |
||||
|
||||
$this->validate(\request(), [ |
||||
'description' => 'required', |
||||
// 'bottom_description' => 'required', |
||||
'seo_title' => 'nullable', |
||||
'seo_description' => 'nullable', |
||||
'publish_date' =>'required', |
||||
'keyword' => 'required', |
||||
'meta-keyword' => 'nullable', |
||||
'status' => 'required', |
||||
'image' => 'required|file|mimes:jpeg,png,jpg,pdf', |
||||
'thumbnail' => 'required', |
||||
]); |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('news_and_update',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
} |
||||
if($request->hasFile('thumbnail')){ |
||||
$extension = \request()->file('thumbnail')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('news_and_update',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('thumbnail'),$extension,$count,$image_folder_type); |
||||
$thumbnail_path1 = $out_put_path[0]; |
||||
} |
||||
|
||||
$requestData = $request->all(); |
||||
if(isset($image_path1)){ |
||||
$requestData['image'] = $image_path1; |
||||
} |
||||
if(isset($thumbnail_path1)){ |
||||
$requestData['thumbnail'] = $thumbnail_path1; |
||||
} |
||||
|
||||
$requestData['slug'] = Setting::create_slug($requestData['keyword']); |
||||
$setting = NewsAndUpdate::create($requestData); |
||||
if(\request('point_title')){ |
||||
foreach (\request('point') as $index => $value){ |
||||
$setting_point = new NewsAndUpdatePoint(); |
||||
$setting_point->news_and_update_id = $setting->id; |
||||
$setting_point->point = $value; |
||||
$setting_point->save(); |
||||
} |
||||
} |
||||
Session::flash('success','Blog successfully created'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
public function show($id) |
||||
{ |
||||
$setting =NewsAndUpdate::findorfail($id); |
||||
return view($this->view.'show',compact('setting')); |
||||
} |
||||
|
||||
public function edit($id){ |
||||
$setting =NewsAndUpdate::findorfail($id); |
||||
return view($this->view.'edit',compact('setting')); |
||||
} |
||||
|
||||
public function update(Request $request, $id){ |
||||
$setting =NewsAndUpdate::findorfail($id); |
||||
$this->validate(\request(), [ |
||||
'description' => 'required', |
||||
'seo_title' => 'nullable', |
||||
'seo_description' => 'nullable', |
||||
'keyword' => 'required', |
||||
'meta-keyword' => 'nullable', |
||||
'status' => 'required', |
||||
'publish_date'=>'required', |
||||
]); |
||||
|
||||
if(\request('image')){ |
||||
$this->validate(\request(),[ |
||||
'image' => 'file|mimes:jpeg,png,jpg' |
||||
]); |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('news_and_update',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
if (is_file(public_path().'/'.$setting->image) && file_exists(public_path().'/'.$setting->image)){ |
||||
unlink(public_path().'/'.$setting->image); |
||||
} |
||||
} |
||||
|
||||
} |
||||
if($request->hasFile('thumbnail')){ |
||||
$extension = \request()->file('thumbnail')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('news_and_update',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('thumbnail'),$extension,$count,$image_folder_type); |
||||
$thumbnail_path1 = $out_put_path[0]; |
||||
if (is_file(public_path().'/'.$setting->thumbnail) && file_exists(public_path().'/'.$setting->thumbnail)){ |
||||
unlink(public_path().'/'.$setting->thumbnail); |
||||
} |
||||
} |
||||
|
||||
|
||||
$requestData = $request->all(); |
||||
$requestData['slug'] = Setting::create_slug($requestData['keyword']); |
||||
if(isset($image_path1)){ |
||||
$requestData['image'] = $image_path1; |
||||
} |
||||
if(isset($thumbnail_path1)){ |
||||
$requestData['thumbnail'] = $thumbnail_path1; |
||||
} |
||||
$setting->fill($requestData); |
||||
$setting->save(); |
||||
if(\request('point_title') ){ |
||||
if(\request('point')){ |
||||
foreach (\request('point') as $index => $value){ |
||||
$setting_point = new NewsAndUpdatePoint(); |
||||
$setting_point->news_and_update_id = $setting->id; |
||||
$setting_point->point = $value; |
||||
$setting_point->save(); |
||||
} |
||||
} |
||||
if(\request('point_old_id')){ |
||||
foreach (\request('point_old_id') as $in => $value1){ |
||||
$setting_point_update = NewsAndUpdatePoint::findOrFail($value1); |
||||
$setting_point_update->news_and_update_id = $setting->id; |
||||
$setting_point_update->point = \request('point_old')[$in]; |
||||
$setting_point_update->save(); |
||||
} |
||||
} |
||||
|
||||
} |
||||
Session::flash('success','News and Update succesfully edited.'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
|
||||
public function delete($id){ |
||||
$setting=NewsAndUpdate::findorfail($id); |
||||
if($setting->news_and_update_points->count() > 0){ |
||||
$setting->news_and_update_points()->delete(); |
||||
} |
||||
if($setting->delete()){ |
||||
if (is_file(public_path().'/'.$setting->image) && file_exists(public_path().'/'.$setting->image)){ |
||||
unlink(public_path().'/'.$setting->image); |
||||
} |
||||
} |
||||
Session::flash('success','News and Update is deleted !'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
public function blog_point($blog_point_id) |
||||
{ |
||||
if(Auth::user()){ |
||||
$setting = BlogPoint::findorfail($blog_point_id); |
||||
$setting->delete(); |
||||
return response()->json(['blog_point_id' => $blog_point_id]); |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
@ -1,122 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use Illuminate\Http\Request; |
||||
use App\Models\Page; |
||||
use App\Models\User; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class PageController extends Controller |
||||
{ |
||||
protected $view = 'admin.page.'; |
||||
protected $redirect = 'admin/pages'; |
||||
public function index() |
||||
{ |
||||
$settings = Page::orderBy('id','DESC'); |
||||
// if(\request('title')){ |
||||
// $key = \request('title1'); |
||||
// $settings = $settings->where('title1','like','%'.$key.'%'); |
||||
// } |
||||
// if(\request('status')){ |
||||
// $key = \request('status'); |
||||
// $settings = $settings->where('status',$key); |
||||
// } |
||||
$settings = $settings->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
public function create() |
||||
{ |
||||
return view($this->view.'create'); |
||||
} |
||||
|
||||
public function store(Request $request) |
||||
{ |
||||
|
||||
|
||||
$this->validate(\request(), [ |
||||
|
||||
'title' => 'required', |
||||
'status' => 'required', |
||||
'banner_image' => 'file|mimes:jpeg,png,jpg' |
||||
]); |
||||
if($request->hasFile('banner_image')){ |
||||
$extension = \request()->file('banner_image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('page',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('banner_image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
} |
||||
|
||||
$requestData = $request->all(); |
||||
if(isset($image_path1)){ |
||||
$requestData['banner_image'] = $image_path1; |
||||
} |
||||
|
||||
// $requestData['slug'] = Setting::create_slug($requestData['keyword']); |
||||
$setting = Page::create($requestData); |
||||
|
||||
Session::flash('success','Page successfully created'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
public function edit($id) |
||||
{ |
||||
$setting = Page::findorfail($id); |
||||
return view($this->view.'edit',compact('setting')); |
||||
} |
||||
|
||||
public function update(Request $request, $id){ |
||||
|
||||
$setting =Page::findorfail($id); |
||||
$this->validate(\request(), [ |
||||
'title' => 'required', |
||||
|
||||
'status' => 'required', |
||||
|
||||
]); |
||||
|
||||
if(\request('banner_image')){ |
||||
$this->validate(\request(),[ |
||||
'banner_image' => 'file|mimes:jpeg,png,jpg' |
||||
]); |
||||
if($request->hasFile('banner_image')){ |
||||
$extension = \request()->file('banner_image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('page',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('banner_image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
if (is_file(public_path().'/'.$setting->banner_image) && file_exists(public_path().'/'.$setting->banner_image)){ |
||||
unlink(public_path().'/'.$setting->banner_image); |
||||
} |
||||
} |
||||
} |
||||
|
||||
|
||||
$requestData = $request->all(); |
||||
// $requestData['slug'] = Setting::create_slug($requestData['keyword']); |
||||
if(isset($image_path1)){ |
||||
$requestData['banner_image'] = $image_path1; |
||||
} |
||||
$setting->fill($requestData); |
||||
$setting->save(); |
||||
|
||||
Session::flash('success','Page succesffuly updated.'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
|
||||
public function delete($id){ |
||||
$setting=Page::findorfail($id); |
||||
|
||||
if($setting->delete()){ |
||||
if (is_file(public_path().'/'.$setting->image) && file_exists(public_path().'/'.$setting->image)){ |
||||
unlink(public_path().'/'.$setting->image); |
||||
} |
||||
} |
||||
Session::flash('success','Page is deleted !'); |
||||
return redirect($this->redirect); |
||||
} |
||||
} |
@ -1,33 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\Referral; |
||||
use App\Models\User; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class ReferralController extends Controller |
||||
{ |
||||
protected $view='admin.referral.'; |
||||
protected $redirect='admin/referrals'; |
||||
public function index(){ |
||||
$settings=Referral::paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public function show($id){ |
||||
|
||||
$referral=Referral::findorfail($id); |
||||
return view($this->view.'show',compact('referral')); |
||||
|
||||
} |
||||
} |
@ -1,66 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\SeoTitle; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class SeoTitleController extends Controller |
||||
{ |
||||
protected $view = 'admin.seo_title.'; |
||||
protected $redirect = 'admin/seo_titles'; |
||||
|
||||
public function index(){ |
||||
$settings = SeoTitle::paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
|
||||
} |
||||
public function create(){ |
||||
return view($this->view.'create'); |
||||
} |
||||
|
||||
public function store(Request $request){ |
||||
|
||||
$this->validate(\request(),[ |
||||
'seo_type'=>'required', |
||||
'status' => 'required' |
||||
]); |
||||
$requestData = $request->all(); |
||||
$setting = SeoTitle::create($requestData); |
||||
|
||||
Session::flash('success','SEO Type is created'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
public function edit($id){ |
||||
$setting = SeoTitle::findorfail($id); |
||||
return view($this->view.'edit',compact('setting')); |
||||
} |
||||
|
||||
public function update(Request $request ,$id){ |
||||
$setting = SeoTitle::findorfail($id); |
||||
|
||||
$this->validate(\request(),[ |
||||
'seo_type'=>'required', |
||||
'status' => 'required' |
||||
]); |
||||
$requestData = $request->all(); |
||||
$setting->fill($requestData); |
||||
$setting->save(); |
||||
|
||||
Session::flash('success','Seo Title is Updated'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
public function delete($id){ |
||||
|
||||
$setting=SeoTitle::findorfail($id); |
||||
$setting->delete(); |
||||
Session::flash('success','Seo Title is deleted !'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
// |
||||
} |
@ -1,291 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\Service; |
||||
use App\Models\ServicePoint; |
||||
use App\Models\Setting; |
||||
use Illuminate\Http\Request; |
||||
use App\Models\User; |
||||
use Illuminate\Support\Facades\Auth; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class ServiceController extends Controller |
||||
{ |
||||
/** |
||||
* Display a listing of the resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
|
||||
protected $view = 'admin.service.'; |
||||
protected $redirect = 'admin/services'; |
||||
|
||||
public function index() |
||||
{ |
||||
$services = Service::orderBy('order_by','ASC'); |
||||
|
||||
if(\request('name')){ |
||||
$key = \request('name'); |
||||
$services = $services->where('name','like','%'.$key.'%'); |
||||
} |
||||
if(\request('status')){ |
||||
$key = \request('status'); |
||||
$services = $services->where('status',$key); |
||||
} |
||||
$services = $services->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('services')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for creating a new resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function create() |
||||
{ |
||||
return view($this->view.'create'); |
||||
} |
||||
|
||||
/** |
||||
* Store a newly created resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function store(Request $request) |
||||
{ |
||||
|
||||
$this->validate(\request(),[ |
||||
'name' => 'required', |
||||
'seo_title' => 'required', |
||||
'short_description' => 'required', |
||||
'keywords'=>'required', |
||||
'icon' => 'file|mimes:jpeg,png,jpg,svg,' |
||||
]); |
||||
$service = new Service(); |
||||
$service->name = \request('name'); |
||||
// $service->image = \request('image'); |
||||
// $service->image_title = \request('image_title'); |
||||
// $service->top_description = \request('top_description'); |
||||
// $service->image_description = \request('image_description'); |
||||
// $service->bottom_description = \request('bottom_description'); |
||||
$service->seo_description = strip_tags(\request('seo_description')); |
||||
$service->seo_title = \request('seo_title'); |
||||
$service->keywords = \request('keywords'); |
||||
// $service->icon = \request('icon'); |
||||
$service->meta_keywords = strip_tags(\request('meta_keywords')); |
||||
$service->short_description = (\request('short_description')); |
||||
// $service->point_title = \request('point_title'); |
||||
// $service->description_title = \request('description_title'); |
||||
$service->status = \request('status'); |
||||
$service->order_by = \request('order_by'); |
||||
// $service->image_alt = \request('image_alt'); |
||||
$service->slug = Setting::create_slug(\request('seo_title')); |
||||
|
||||
|
||||
if($request->hasFile('icon')){ |
||||
$extension = \request()->file('icon')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
|
||||
$count = rand(100,999); |
||||
|
||||
$out_put_path = User::save_image(\request('icon'),$extension,$count,$image_folder_type); |
||||
is_array($out_put_path) ? $service->icon = $out_put_path[0] : $service->icon = $out_put_path; |
||||
} |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
|
||||
$count = rand(100,999); |
||||
|
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
is_array($out_put_path) ? $service->image = $out_put_path[0] : $service->image = $out_put_path; |
||||
} |
||||
if($request->hasFile('banner_image')){ |
||||
$extension = \request()->file('banner_image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
|
||||
$count = rand(100,999); |
||||
|
||||
$out_put_path = User::save_image(\request('banner_image'),$extension,$count,$image_folder_type); |
||||
is_array($out_put_path) ? $service->banner_image = $out_put_path[0] : $service->banner_image = $out_put_path; |
||||
} |
||||
|
||||
|
||||
if($service->save()){ |
||||
// $points = $request->points; |
||||
// foreach($points as $point){ |
||||
// $service_point = new ServicePoint(); |
||||
// $service_point->service_id = $service->id; |
||||
// $service_point->point = $point; |
||||
// $service_point->save(); |
||||
// } |
||||
Session::flash('success','Service has been created!'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* Display the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function show($id) |
||||
{ |
||||
$service = new Service(); |
||||
|
||||
|
||||
$service = $service->findorfail($id); |
||||
|
||||
|
||||
return view($this->view . 'show', compact('service')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for editing the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function edit($id) |
||||
{ |
||||
$service = new Service(); |
||||
|
||||
|
||||
$service = $service->findorfail($id); |
||||
|
||||
|
||||
return view($this->view . 'edit', compact('service')); |
||||
} |
||||
|
||||
/** |
||||
* Update the specified resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function update(Request $request, $id) |
||||
{ |
||||
$this->validate(\request(),[ |
||||
|
||||
'name' => 'required', |
||||
'short_description' => 'required', |
||||
'seo_title' => 'required', |
||||
'keywords'=>'required', |
||||
|
||||
]); |
||||
$service = new Service(); |
||||
$service = $service->findorfail($id); |
||||
$service->name = \request('name'); |
||||
$service->short_description = \request('short_description'); |
||||
$service->seo_description = \request('seo_description'); |
||||
$service->seo_title = \request('seo_title'); |
||||
$service->keywords = \request('keywords'); |
||||
|
||||
$service->meta_keywords = \request('meta_keywords'); |
||||
$service->status = \request('status'); |
||||
$service->order_by = \request('order_by'); |
||||
$service->slug = Setting::create_slug(\request('seo_title')); |
||||
|
||||
if($request->hasFile('icon')){ |
||||
|
||||
$extension = \request()->file('icon')->getClientOriginalExtension(); |
||||
|
||||
$image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('icon'),$extension,$count,$image_folder_type); |
||||
|
||||
|
||||
if (is_file(public_path().'/'.$service->icon) && file_exists(public_path().'/'.$service->icon)){ |
||||
unlink(public_path().'/'.$service->icon); |
||||
} |
||||
is_array($out_put_path) ? $service->icon = $out_put_path[0] : $service->icon = $out_put_path; |
||||
|
||||
|
||||
} |
||||
if($request->hasFile('image')){ |
||||
|
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
|
||||
$image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
|
||||
|
||||
if (is_file(public_path().'/'.$service->image) && file_exists(public_path().'/'.$service->image)){ |
||||
unlink(public_path().'/'.$service->image); |
||||
} |
||||
is_array($out_put_path) ? $service->image = $out_put_path[0] : $service->image = $out_put_path; |
||||
|
||||
|
||||
} |
||||
if($request->hasFile('banner_image')){ |
||||
|
||||
$extension = \request()->file('banner_image')->getClientOriginalExtension(); |
||||
|
||||
$image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('banner_image'),$extension,$count,$image_folder_type); |
||||
|
||||
|
||||
if (is_file(public_path().'/'.$service->banner_image) && file_exists(public_path().'/'.$service->banner_image)){ |
||||
unlink(public_path().'/'.$service->banner_image); |
||||
} |
||||
is_array($out_put_path) ? $service->banner_image = $out_put_path[0] : $service->banner_image = $out_put_path; |
||||
|
||||
|
||||
} |
||||
if($service->update()){ |
||||
Session::flash('success','Service has been successfully updated!'); |
||||
return redirect($this->redirect); |
||||
// $service_point = $service->service_point(); |
||||
// $service_point->delete(); |
||||
// $points = $request->points; |
||||
// foreach($points as $point){ |
||||
// $service_point = new ServicePoint(); |
||||
// $service_point->service_id = $service->id; |
||||
// $service_point->point = $point; |
||||
// $service_point->save(); |
||||
|
||||
|
||||
|
||||
|
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
/** |
||||
* Remove the specified resource from storage. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function delete($id) |
||||
{ |
||||
$setting=Service::findorfail($id); |
||||
if (is_file(public_path().'/'.$setting->icon) && file_exists(public_path().'/'.$setting->icon)){ |
||||
unlink(public_path().'/'.$setting->icon); |
||||
} |
||||
$setting->delete(); |
||||
Session::flash('success','Service has been sucessfully deleted!'); |
||||
return redirect($this->redirect); |
||||
//dd("here"); |
||||
} |
||||
|
||||
|
||||
public function service_point($service_point_id){ |
||||
if(Auth::user()){ |
||||
$setting = ServicePoint::findorfail($service_point_id); |
||||
$setting->delete(); |
||||
return response()->json(['service_point_id' => $service_point_id]); |
||||
} |
||||
|
||||
} |
||||
} |
@ -1,314 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\Service; |
||||
use App\Models\ServiceSection; |
||||
use App\Models\ServiceSectionPoint; |
||||
use App\Models\Setting; |
||||
use Illuminate\Http\Request; |
||||
use App\Models\User; |
||||
use Illuminate\Support\Facades\Auth; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class ServiceSectionController extends Controller |
||||
{ |
||||
/** |
||||
* Display a listing of the resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
|
||||
protected $view = 'admin.service_section.'; |
||||
protected $redirect = 'admin/services/{id}/sections'; |
||||
|
||||
public function index($id) |
||||
{ |
||||
$service_name = Service::findorfail($id)->name; |
||||
$service_section = ServiceSection::where('service_id',$id); |
||||
|
||||
|
||||
// if(\request('name')){ |
||||
// $key = \request('name'); |
||||
// $services = $services->where('name','like','%'.$key.'%'); |
||||
// } |
||||
// if(\request('status')){ |
||||
// $key = \request('status'); |
||||
// $services = $services->where('status',$key); |
||||
// } |
||||
$service_sections = $service_section->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('service_sections','service_name','id')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for creating a new resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function create($id) |
||||
{ |
||||
$service_name = Service::findorfail($id)->name; |
||||
return view($this->view.'create',compact('service_name','id')); |
||||
} |
||||
|
||||
/** |
||||
* Store a newly created resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function store(Request $request,$id) |
||||
{ |
||||
|
||||
|
||||
$this->validate(\request(),[ |
||||
|
||||
'title' => 'required', |
||||
'status' => 'required', |
||||
'order_by' => 'required' |
||||
|
||||
]); |
||||
$service_section = new ServiceSection(); |
||||
|
||||
$service_section->title = \request('title'); |
||||
$service_section->sub_title = \request('sub_title'); |
||||
$service_section->description = (\request('description')); |
||||
$service_section->sub_description = (\request('sub_description')); |
||||
$service_section->service_id = $id; |
||||
$service_section->status = \request('status'); |
||||
$service_section->order_by = \request('order_by'); |
||||
// $service->image_alt = \request('image_alt'); |
||||
// $service->slug = Setting::create_slug(\request('seo_title')); |
||||
|
||||
|
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
// dd($image_folder_type); |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path = $out_put_path[0]; |
||||
$service_section->image = $image_path; |
||||
} |
||||
|
||||
|
||||
if($service_section->save()){ |
||||
$points = $request->points; |
||||
$point_descriptions = $request->point_descriptions ?? []; |
||||
$icons = $request->icons ?? []; |
||||
|
||||
if($points[0] != null){ |
||||
|
||||
foreach($points as $key => $point){ |
||||
|
||||
$service_section_point = new ServiceSectionPoint(); |
||||
|
||||
$service_section_point->service_section_id = $service_section->id; |
||||
if(array_key_exists($key,$point_descriptions)){ |
||||
$service_section_point->point_description = $point_descriptions[$key]; |
||||
} |
||||
if(array_key_exists($key,$icons)){ |
||||
$extension = $icons[$key]->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
|
||||
$count = rand(100,999); |
||||
|
||||
$out_put_path = User::save_image($icons[$key],$extension,$count,$image_folder_type); |
||||
is_array($out_put_path) ? $service_section_point->icon = $out_put_path[0] : $service_section_point->icon = $out_put_path; |
||||
// $service_section_point->icon = $points_descriptions[$key]; |
||||
} |
||||
$service_section_point->point = $point; |
||||
$service_section_point->save(); |
||||
} |
||||
} |
||||
Session::flash('success','Service Section has has been created!'); |
||||
return redirect('admin/services/'.$id.'/sections'); |
||||
|
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* Display the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function show($id,$secId) |
||||
{ |
||||
|
||||
|
||||
// $service = new Service(); |
||||
// $service_section = new ServiceSection(); |
||||
$service = Service::findorfail($id); |
||||
|
||||
$service_section = ServiceSection::findorfail($secId); |
||||
|
||||
|
||||
|
||||
return view($this->view . 'show', compact('service','service_section')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for editing the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function edit($id,$secId) |
||||
{ |
||||
$service = new Service(); |
||||
$service_section = new ServiceSection(); |
||||
$service = $service->findorfail($id); |
||||
$service_section = $service_section->findorfail($secId); |
||||
|
||||
|
||||
|
||||
|
||||
return view($this->view . 'edit', compact('service','service_section')); |
||||
} |
||||
|
||||
/** |
||||
* Update the specified resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function update(Request $request, $id, $secId) |
||||
{ |
||||
$this->validate(\request(),[ |
||||
'title' => 'required', |
||||
'status' => 'required', |
||||
'order_by' => 'required' |
||||
]); |
||||
$service_section = ServiceSection::findOrFail($secId); |
||||
$service_section->title = \request('title'); |
||||
$service_section->sub_title = \request('sub_title'); |
||||
$service_section->description = (\request('description')); |
||||
$service_section->sub_description = (\request('sub_description')); |
||||
$service_section->service_id = $id; |
||||
$service_section->status = \request('status'); |
||||
$service_section->order_by = \request('order_by'); |
||||
|
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path = $out_put_path[0]; |
||||
if (is_file(public_path().'/'.$service_section->image) && file_exists(public_path().'/'.$service_section->image)){ |
||||
unlink(public_path().'/'.$service_section->image); |
||||
} |
||||
$service_section->image = $image_path; |
||||
} |
||||
if($service_section->update()){ |
||||
$points = $request->points; |
||||
$point_ids = $request->point_ids; |
||||
$point_descriptions = $request->point_descriptions ?? []; |
||||
$icons = $request->icons ?? []; |
||||
|
||||
if((!empty($points)) && ($points[0] != null)){ |
||||
$service_section_point = $service_section->service_section_point(); |
||||
$service_section_point->delete(); |
||||
foreach($points as $point){ |
||||
$service_section_point = new ServiceSectionPoint(); |
||||
$service_section_point->service_section_id = $service_section->id; |
||||
$service_section_point->point = $point; |
||||
$service_section_point->save(); |
||||
} |
||||
} |
||||
|
||||
// if($points != null && $point_ids != null){ |
||||
// foreach($request['point_ids'] as $key => $pid){ |
||||
// $service_section_point = new ServiceSectionPoint(); |
||||
// $service_section_point = $service_section_point->findorfail($pid); |
||||
// // $service_section_point = ServiceSectionPoint::find($id); |
||||
|
||||
// if(array_key_exists($key,$point_descriptions)){ |
||||
// $service_section_point->point_description = $point_descriptions[$key]; |
||||
// } |
||||
// if(array_key_exists($key,$icons)){ |
||||
// $extension = $icons[$key]->getClientOriginalExtension(); |
||||
// $image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
|
||||
// $count = rand(100,999); |
||||
|
||||
// $out_put_path = User::save_image($icons[$key],$extension,$count,$image_folder_type); |
||||
// is_array($out_put_path) ? $service_section_point->icon = $out_put_path[0] : $service_section_point->icon = $out_put_path; |
||||
// // $service_section_point->icon = $points_descriptions[$key]; |
||||
// } |
||||
// $service_section_point->point = $points[$key]; |
||||
// $service_section_point->update(); |
||||
|
||||
// } |
||||
// } |
||||
// else{ |
||||
// foreach($points as $key => $point){ |
||||
// $service_section_point = new ServiceSectionPoint(); |
||||
// $service_section_point->service_section_id = $service_section->id; |
||||
// $service_section_point->point = $point; |
||||
// if(array_key_exists($key,$icons)){ |
||||
// $extension = $icons[$key]->getClientOriginalExtension(); |
||||
// $image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
|
||||
// $count = rand(100,999); |
||||
|
||||
// $out_put_path = User::save_image($icons[$key],$extension,$count,$image_folder_type); |
||||
// is_array($out_put_path) ? $service_section_point->icon = $out_put_path[0] : $service_section_point->icon = $out_put_path; |
||||
// // $service_section_point->icon = $points_descriptions[$key]; |
||||
// } |
||||
// $service_section_point->save(); |
||||
// } |
||||
// } |
||||
// $service_point = $service_section->service_section_point(); |
||||
// $service_point->delete(); |
||||
// foreach($points as $key => $point){ |
||||
|
||||
// $service_section_point = new ServiceSectionPoint(); |
||||
// $service_section_point->service_section_id = $service_section->id; |
||||
// if(array_key_exists($key,$point_descriptions)){ |
||||
// $service_section_point->point_description = $point_descriptions[$key]; |
||||
// } |
||||
// if(array_key_exists($key,$icons)){ |
||||
// $extension = $icons[$key]->getClientOriginalExtension(); |
||||
// $image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
|
||||
// $count = rand(100,999); |
||||
|
||||
// $out_put_path = User::save_image($icons[$key],$extension,$count,$image_folder_type); |
||||
// is_array($out_put_path) ? $service_section_point->icon = $out_put_path[0] : $service_section_point->icon = $out_put_path; |
||||
// // $service_section_point->icon = $points_descriptions[$key]; |
||||
// } |
||||
// $service_section_point->point = $point; |
||||
// $service_section_point->update(); |
||||
// } |
||||
Session::flash('success','Service Section has been successfully updated!'); |
||||
return redirect('admin/services/'.$id.'/sections'); |
||||
|
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
/** |
||||
* Remove the specified resource from storage. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function destroy($id) |
||||
{ |
||||
// |
||||
} |
||||
|
||||
public function service_point($service_point_id){ |
||||
if(Auth::user()){ |
||||
$setting = ServiceSectionPoint::findorfail($service_point_id); |
||||
$setting->delete(); |
||||
return response()->json(['service_point_id' => $service_point_id]); |
||||
} |
||||
|
||||
} |
||||
} |
@ -1,184 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Http\Resources\SettingResource; |
||||
use App\Models\Setting; |
||||
use App\Models\SettingImageAlt; |
||||
use App\Models\User; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class SettingController extends Controller |
||||
{ |
||||
|
||||
protected $view = 'admin.setting.'; |
||||
protected $redirect = 'admin/settings'; |
||||
|
||||
public function index() |
||||
{ |
||||
$settings = Setting::orderBy('id','asc'); |
||||
|
||||
|
||||
if(\request('name')){ |
||||
$key = \request('name'); |
||||
$settings = $settings->where('key','like','%'.$key.'%'); |
||||
} |
||||
if(\request('status')){ |
||||
$key = \request('status'); |
||||
$settings = $settings->where('status',$key); |
||||
} |
||||
$settings = $settings->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
public function create() |
||||
{ |
||||
return view($this->view.'create'); |
||||
} |
||||
|
||||
public function store(Request $request) |
||||
{ |
||||
|
||||
|
||||
|
||||
$this->validate(\request(),[ |
||||
'type' => 'required', |
||||
'key' => 'required', |
||||
'value' => 'required', |
||||
'status' => 'required' |
||||
]); |
||||
|
||||
$setting = new Setting(); |
||||
|
||||
$setting->key = \request('key'); |
||||
$setting->type = \request('type'); |
||||
$setting->status = \request('status'); |
||||
$setting->slug = Setting::create_slug(\request('key')); |
||||
// if(request('type') == array_search('Image',config('custom.setting_types'))){ |
||||
// $this->validate($request,[ |
||||
// 'value'=>'required|file|mimes:jpeg,png,jpg,pdf' |
||||
// ] |
||||
// ); |
||||
// } |
||||
if($request->hasFile('value')){ |
||||
$extension = \request()->file('value')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('setting',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('value'),$extension,$count,$image_folder_type); |
||||
is_array($out_put_path) ? $image_path = $out_put_path[0] : $image_path = $out_put_path; |
||||
$setting->value = $image_path; |
||||
} |
||||
|
||||
else{ |
||||
$setting->value = \request('value'); |
||||
} |
||||
$setting->save(); |
||||
if(\request('image_alt')){ |
||||
$image_alt = new SettingImageAlt(); |
||||
$image_alt->setting_id = $setting->id; |
||||
$image_alt->image_alt = \request('image_alt'); |
||||
$image_alt->save(); |
||||
} |
||||
Session::flash('success','Setting has been created!'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
public function getAll() |
||||
{ |
||||
$settings = Setting::all(); |
||||
return SettingResource::collection(Setting::all()); |
||||
} |
||||
|
||||
public function getSetting() |
||||
{ |
||||
$slug = \request('slug'); |
||||
$setting = Setting::where('slug',$slug)->where('status',1)->first(); |
||||
return new SettingResource($setting); |
||||
} |
||||
|
||||
public function show($id) |
||||
{ |
||||
$setting = Setting::findOrFail($id); |
||||
return view($this->view.'show',compact('setting')); |
||||
} |
||||
|
||||
public function edit($id) |
||||
{ |
||||
$setting = Setting::findOrFail($id); |
||||
// dd(array_search('Image',config('custom.setting_types'))); |
||||
return view($this->view.'edit',compact('setting')); |
||||
} |
||||
|
||||
public function update(Request $request, $id) |
||||
{ |
||||
$this->validate(\request(),[ |
||||
'type' => 'required', |
||||
'key' => 'required', |
||||
'status' => 'required' |
||||
]); |
||||
$setting = Setting::findOrFail($id); |
||||
$setting->key = \request('key'); |
||||
$setting->type = \request('type'); |
||||
$setting->status = \request('status'); |
||||
$setting->slug = Setting::create_slug(\request('key')); |
||||
if(request('type') == array_search('Image',config('custom.setting_types'))){ |
||||
if(\request('value')){ |
||||
$this->validate($request,[ |
||||
'value'=>'required|file|mimes:jpeg,png,jpg,pdf,mp4' |
||||
] |
||||
); |
||||
|
||||
if($request->hasFile('value')){ |
||||
$extension = \request()->file('value')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('setting',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('value'),$extension,$count,$image_folder_type); |
||||
is_array($out_put_path) ? $image_path = $out_put_path[0] : $image_path = $out_put_path; |
||||
$setting->value = $image_path; |
||||
} |
||||
} |
||||
|
||||
|
||||
}else{ |
||||
$this->validate($request,[ |
||||
'value'=>'required' |
||||
] |
||||
); |
||||
$setting->value = \request('value'); |
||||
} |
||||
$setting->save(); |
||||
if(\request('image_alt')){ |
||||
if($setting->setting_alt){ |
||||
$image_alt = $setting->setting_alt; |
||||
$image_alt->setting_id = $setting->id; |
||||
$image_alt->image_alt = \request('image_alt'); |
||||
$image_alt->save(); |
||||
}else{ |
||||
$image_alt = new SettingImageAlt(); |
||||
$image_alt->setting_id = $setting->id; |
||||
$image_alt->image_alt = \request('image_alt'); |
||||
$image_alt->save(); |
||||
} |
||||
}else{ |
||||
if($setting->setting_alt){ |
||||
$setting->setting_alt->delete(); |
||||
} |
||||
} |
||||
Session::flash('success','Setting has been created!'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
public function delete($id) |
||||
{ |
||||
$setting=Setting::findorfail($id); |
||||
if (is_file(public_path().'/'.$setting->value) && file_exists(public_path().'/'.$setting->value)){ |
||||
unlink(public_path().'/'.$setting->value); |
||||
} |
||||
$setting->delete(); |
||||
Session::flash('success','Setting has been sucessfully deleted!'); |
||||
return redirect($this->redirect); |
||||
//dd("here"); |
||||
} |
||||
} |
@ -1,184 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Http\Resources\SliderResource; |
||||
use App\Models\Slider; |
||||
use App\Models\User; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class SliderController extends Controller |
||||
{ |
||||
/** |
||||
* Display a listing of the resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
|
||||
protected $view = 'admin.slider.'; |
||||
protected $redirect = 'admin/sliders'; |
||||
public function index() |
||||
{ |
||||
$settings = Slider::orderBy('id','DESC'); |
||||
if(\request('title1')){ |
||||
$key = \request('title1'); |
||||
$settings = $settings->where('title1','like','%'.$key.'%'); |
||||
} |
||||
if(\request('status')){ |
||||
$key = \request('status'); |
||||
$settings = $settings->where('status',$key); |
||||
} |
||||
$settings = $settings->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for creating a new resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function create() |
||||
{ |
||||
return view($this->view.'create'); |
||||
} |
||||
|
||||
/** |
||||
* Store a newly created resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function store(Request $request) |
||||
{ |
||||
$this->validate(\request(),[ |
||||
'title1' => 'required', |
||||
'title2' => 'required', |
||||
'description' => 'required', |
||||
'image' => 'required|file|mimes:jpeg,png,jpg', |
||||
'status' => 'required' |
||||
]); |
||||
|
||||
$setting = new Slider(); |
||||
|
||||
$setting->title1 = \request('title1'); |
||||
$setting->title2 = \request('title2'); |
||||
$setting->description = \request('description'); |
||||
$setting->status = \request('status'); |
||||
$setting->link = \request('link'); |
||||
$setting->image_alt = \request('image_alt'); |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('slider',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
if($extension == "jpeg" || $extension == "jpg" || $extension == "png"){ |
||||
$image_path = $out_put_path[0]; |
||||
$setting->image = $image_path; |
||||
// $setting->doc_name = $out_put_path[2]; |
||||
} |
||||
} |
||||
|
||||
$setting->save(); |
||||
Session::flash('success','Slider has been created!'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
/** |
||||
* Display the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function show($id) |
||||
{ |
||||
// |
||||
} |
||||
|
||||
/** |
||||
* Show the form for editing the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function edit($id) |
||||
{ |
||||
$setting = Slider::findorfail($id); |
||||
return view($this->view.'edit',compact('setting')); |
||||
} |
||||
|
||||
/** |
||||
* Update the specified resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function update(Request $request, $id) |
||||
{ |
||||
$setting=Slider::findorfail($id); |
||||
|
||||
$this->validate(\request(),[ |
||||
'title1' => 'required', |
||||
'title2' => 'required', |
||||
'description' => 'required', |
||||
'image' => 'file|mimes:jpeg,png,jpg', |
||||
'status' => 'required' |
||||
]); |
||||
|
||||
|
||||
|
||||
$setting->title1 = \request('title1'); |
||||
$setting->title2 = \request('title2'); |
||||
$setting->description = \request('description'); |
||||
$setting->status = \request('status'); |
||||
$setting->link = \request('link'); |
||||
$setting->image_alt = \request('image_alt'); |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('slider',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
|
||||
$image_path = $out_put_path[0]; |
||||
if (is_file(public_path().'/'.$setting->image) && file_exists(public_path().'/'.$setting->image)){ |
||||
unlink(public_path().'/'.$setting->image); |
||||
} |
||||
if(isset($image_path)){ |
||||
$setting->image = $image_path; |
||||
|
||||
} |
||||
|
||||
// $setting->doc_name = $out_put_path[2]; |
||||
} |
||||
// $requestData = $request->all(); |
||||
// $setting->fill($requestData); |
||||
$setting->update(); |
||||
Session::flash('success','Slider has been Updated!'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
/** |
||||
* Remove the specified resource from storage. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function destroy($id) |
||||
{ |
||||
$slider=Slider::findorfail($id); |
||||
if (is_file(public_path().'/'.$slider->image) && file_exists(public_path().'/'.$slider->image)){ |
||||
unlink(public_path().'/'.$slider->image); |
||||
} |
||||
$slider->delete(); |
||||
Session::flash('success','Slider has been sucessfully deleted!'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
public function getSliders(){ |
||||
|
||||
$settings = Slider::where('status',1)->get(); |
||||
// return SliderResource::collection($settings); |
||||
} |
||||
} |
@ -1,98 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\SubOffice; |
||||
use App\Models\User; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class SubOfficeController extends Controller |
||||
{ |
||||
protected $view='admin.sub_office.'; |
||||
protected $redirect='admin/sub_offices'; |
||||
public function index(){ |
||||
$settings = SubOffice::paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
public function create(){ |
||||
|
||||
return view($this->view.'create'); |
||||
} |
||||
|
||||
public function store(Request $request){ |
||||
|
||||
$this->validate(\request(),[ |
||||
'name'=>'required|string', |
||||
'image' => 'required|file|mimes:jpeg,png,jpg,pdf', |
||||
'email'=>'required', |
||||
'latitude' => 'required', |
||||
'longitude' => 'required', |
||||
'contact_no'=>'required' |
||||
]); |
||||
|
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('sub_office',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
} |
||||
$requestData=$request->all(); |
||||
if(isset($image_path1)){ |
||||
$requestData['image'] = $image_path1; |
||||
} |
||||
$setting= SubOffice::create($requestData); |
||||
Session::flash('success','Blog is created'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
|
||||
public function edit($id){ |
||||
$setting=SubOffice::findorfail($id); |
||||
return view($this->view.'edit',compact('setting')); |
||||
} |
||||
|
||||
public function update(Request $request , $id){ |
||||
$setting= SubOffice::findorfail($id); |
||||
|
||||
$this->validate(\request(),[ |
||||
'name'=>'required|string', |
||||
'image' => 'file|mimes:jpeg,png,jpg,pdf', |
||||
'email'=>'required', |
||||
'contact_no'=>'required', |
||||
'latitude' => 'required', |
||||
'longitude' => 'required' |
||||
]); |
||||
|
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('sub_office',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
} |
||||
|
||||
$requestData= $request->all(); |
||||
if(isset($image_path1)){ |
||||
$requestData['image'] = $image_path1; |
||||
} |
||||
$setting->fill($requestData); |
||||
$setting->save(); |
||||
Session::flash('success','Suboffice is Updated'); |
||||
return redirect($this->redirect); |
||||
|
||||
|
||||
} |
||||
|
||||
public function delete($id){ |
||||
|
||||
$setting=SubOffice::findorfail($id); |
||||
$setting->delete(); |
||||
Session::flash('success','Suboffice is deleted !'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
} |
@ -1,49 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\Subscription; |
||||
use Illuminate\Http\Request; |
||||
use App\Models\User; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class SubscriptionController extends Controller |
||||
{ |
||||
protected $view='admin.subscription.'; |
||||
protected $redirect='admin/subscriptions'; |
||||
|
||||
public function index(){ |
||||
$subscriptions=Subscription::paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('subscriptions')); |
||||
} |
||||
|
||||
public function show($id){ |
||||
|
||||
$subscription = new Subscription(); |
||||
$subscription = $subscription->findorfail($id); |
||||
return view($this->view . 'show', compact('subscription')); |
||||
|
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public function delete($id){ |
||||
$setting=Placement::findorfail($id); |
||||
if($setting->delete()){ |
||||
if (is_file(public_path().'/'.$setting->image) && file_exists(public_path().'/'.$setting->image)){ |
||||
unlink(public_path().'/'.$setting->image); |
||||
} |
||||
} |
||||
Session::flash('success','Placement is deleted !'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
// |
||||
} |
@ -1,93 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\Team; |
||||
use App\Models\User; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class TeamController extends Controller |
||||
{ |
||||
// |
||||
|
||||
protected $view = 'admin.team.'; |
||||
protected $return = 'admin/teams'; |
||||
|
||||
public function index(){ |
||||
$settings = Team::paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
public function create(){ |
||||
return view($this->view.'create'); |
||||
} |
||||
|
||||
public function edit($id){ |
||||
$team = Team::findorfail($id); |
||||
return view($this->view.'edit',compact('team')); |
||||
} |
||||
|
||||
public function store(Request $request){ |
||||
//dd($request); |
||||
$this->validate(\request(),[ |
||||
'team_name'=>'required', |
||||
'designation'=>'required', |
||||
|
||||
'status'=>'required' |
||||
]); |
||||
|
||||
$requestData = $request->all(); |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('team',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
} |
||||
if(isset($image_path1)){ |
||||
$requestData['image'] = $image_path1; |
||||
} |
||||
|
||||
Team::create($requestData); |
||||
Session::flash('success','Team is created'); |
||||
return redirect($this->return); |
||||
|
||||
} |
||||
|
||||
public function update(Request $request ,$id){ |
||||
//dd($request); |
||||
$setting = Team::findorfail($id); |
||||
|
||||
$this->validate(\request(),[ |
||||
'team_name'=>'required', |
||||
'designation'=>'required', |
||||
'status'=>'required', |
||||
'image' => 'file|mimes:jpeg,png,jpg' |
||||
]); |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('team',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
if (is_file(public_path().'/'.$setting->image) && file_exists(public_path().'/'.$setting->image)){ |
||||
unlink(public_path().'/'.$setting->image); |
||||
} |
||||
} |
||||
$requestData = $request->all(); |
||||
if(isset($image_path1)){ |
||||
$requestData['image'] = $image_path1; |
||||
} |
||||
$setting->fill($requestData); |
||||
$setting->save(); |
||||
Session::flash('success','Team is Updated'); |
||||
return redirect($this->return); |
||||
|
||||
|
||||
} |
||||
|
||||
|
||||
|
||||
} |
@ -1,116 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\Testimonial; |
||||
use App\Models\Testimonial as Setting; |
||||
use App\Models\User; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
|
||||
class TestimonialController extends Controller |
||||
{ |
||||
|
||||
protected $view = 'admin.testimonial.'; |
||||
protected $redirect = 'admin/testimonials'; |
||||
|
||||
public function index() |
||||
{ |
||||
$settings = Testimonial::paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('settings')); |
||||
} |
||||
|
||||
public function create() |
||||
{ |
||||
return view($this->view.'create'); |
||||
} |
||||
|
||||
public function store(Request $request) |
||||
{ |
||||
$this->validate(\request(),[ |
||||
|
||||
// 'heading' =>'required', |
||||
// 'title' =>'required', |
||||
'image' =>'required|file|mimes:jpeg,png,jpg,pdf', |
||||
'review' =>'required', |
||||
'author_name' =>'required', |
||||
'author_designation' =>'required', |
||||
'status' =>'required', |
||||
|
||||
]); |
||||
|
||||
if(\request('image')){ |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('testimonial',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
} |
||||
} |
||||
$requestData = $request->all(); |
||||
if(isset($image_path1)){ |
||||
$requestData['image'] = $image_path1; |
||||
} |
||||
$requestData['review'] = strip_tags($request['review']); |
||||
Setting::create($requestData); |
||||
Session::flash('success','Testimonial is created!'); |
||||
return redirect($this->redirect); |
||||
} |
||||
|
||||
public function edit($id){ |
||||
$setting = Testimonial::findorfail($id); |
||||
return view($this->view.'edit',compact('setting')); |
||||
} |
||||
|
||||
public function update(Request $request , $id){ |
||||
|
||||
$setting = Testimonial::findorfail($id); |
||||
|
||||
$this->validate(\request(),[ |
||||
// 'heading' =>'required', |
||||
// 'title' =>'required', |
||||
// 'image' =>'required|file|mimes:jpeg,png,jpg,pdf', |
||||
'review' =>'required', |
||||
'author_name' =>'required', |
||||
'author_designation' =>'required', |
||||
'status' =>'required', |
||||
]); |
||||
|
||||
if(\request('image')){ |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('testimonial',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path1 = $out_put_path[0]; |
||||
} |
||||
} |
||||
$requestData = $request->all(); |
||||
if(isset($image_path1)){ |
||||
$requestData['image'] = $image_path1; |
||||
} |
||||
$requestData['review'] = strip_tags($request['review']); |
||||
$setting->fill($requestData); |
||||
$setting->save(); |
||||
Session::flash('success','Testimonial is Updated!'); |
||||
return redirect($this->redirect); |
||||
|
||||
|
||||
|
||||
} |
||||
|
||||
public function delete($id) |
||||
{ |
||||
$setting=Testimonial::findorfail($id); |
||||
if (is_file(public_path().'/'.$setting->image) && file_exists(public_path().'/'.$setting->image)){ |
||||
unlink(public_path().'/'.$setting->image); |
||||
} |
||||
$setting->delete(); |
||||
Session::flash('success','Testimonial has been sucessfully deleted!'); |
||||
return redirect($this->redirect); |
||||
//dd("here"); |
||||
} |
||||
} |
@ -1,267 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\VisaService; |
||||
use App\Models\ServicePoint; |
||||
use App\Models\Setting; |
||||
use Illuminate\Http\Request; |
||||
use App\Models\User; |
||||
use Illuminate\Support\Facades\Auth; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class VisaServiceController extends Controller |
||||
{ |
||||
/** |
||||
* Display a listing of the resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
|
||||
protected $view = 'admin.visa_service.'; |
||||
protected $redirect = 'admin/visa_services'; |
||||
|
||||
public function index() |
||||
{ |
||||
$services = VisaService::orderBy('order_by','ASC'); |
||||
|
||||
if(\request('name')){ |
||||
$key = \request('name'); |
||||
$services = $services->where('name','like','%'.$key.'%'); |
||||
} |
||||
if(\request('status')){ |
||||
$key = \request('status'); |
||||
$services = $services->where('status',$key); |
||||
} |
||||
$services = $services->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('services')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for creating a new resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function create() |
||||
{ |
||||
return view($this->view.'create'); |
||||
} |
||||
|
||||
/** |
||||
* Store a newly created resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function store(Request $request) |
||||
{ |
||||
|
||||
$this->validate(\request(),[ |
||||
'name' => 'required', |
||||
'seo_title' => 'required', |
||||
'short_description' => 'required', |
||||
'keywords'=>'required', |
||||
'image'=>'required|mimes:jpeg,png,jpg,svg', |
||||
'icon' => 'file|mimes:jpeg,png,jpg,svg,' |
||||
]); |
||||
$service = new VisaService(); |
||||
$service->name = \request('name'); |
||||
// $service->image = \request('image'); |
||||
// $service->image_title = \request('image_title'); |
||||
// $service->top_description = \request('top_description'); |
||||
// $service->image_description = \request('image_description'); |
||||
// $service->bottom_description = \request('bottom_description'); |
||||
$service->seo_description = strip_tags(\request('seo_description')); |
||||
$service->seo_title = \request('seo_title'); |
||||
$service->keywords = \request('keywords'); |
||||
// $service->icon = \request('icon'); |
||||
$service->meta_keywords = strip_tags(\request('meta_keywords')); |
||||
$service->short_description = strip_tags(\request('short_description')); |
||||
// $service->point_title = \request('point_title'); |
||||
// $service->description_title = \request('description_title'); |
||||
$service->status = \request('status'); |
||||
$service->order_by = \request('order_by'); |
||||
// $service->image_alt = \request('image_alt'); |
||||
$service->slug = Setting::create_slug(\request('seo_title')); |
||||
|
||||
|
||||
if($request->hasFile('icon')){ |
||||
$extension = \request()->file('icon')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('visa_service',config('custom.image_folders')); //for image saved in folder |
||||
|
||||
$count = rand(100,999); |
||||
|
||||
$out_put_path = User::save_image(\request('icon'),$extension,$count,$image_folder_type); |
||||
is_array($out_put_path) ? $service->icon = $out_put_path[0] : $service->icon = $out_put_path; |
||||
} |
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('visa_service',config('custom.image_folders')); //for image saved in folder |
||||
|
||||
$count = rand(100,999); |
||||
|
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
is_array($out_put_path) ? $service->image = $out_put_path[0] : $service->image = $out_put_path; |
||||
} |
||||
|
||||
if($service->save()){ |
||||
// $points = $request->points; |
||||
// foreach($points as $point){ |
||||
// $service_point = new ServicePoint(); |
||||
// $service_point->service_id = $service->id; |
||||
// $service_point->point = $point; |
||||
// $service_point->save(); |
||||
// } |
||||
Session::flash('success','Visa Service has been created!'); |
||||
return redirect($this->redirect); |
||||
|
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* Display the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function show($id) |
||||
{ |
||||
$service = new VisaService(); |
||||
|
||||
|
||||
$service = $service->findorfail($id); |
||||
|
||||
|
||||
return view($this->view . 'show', compact('service')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for editing the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function edit($id) |
||||
{ |
||||
$service = new VisaService(); |
||||
|
||||
|
||||
$service = $service->findorfail($id); |
||||
|
||||
|
||||
return view($this->view . 'edit', compact('service')); |
||||
} |
||||
|
||||
/** |
||||
* Update the specified resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function update(Request $request, $id) |
||||
{ |
||||
$this->validate(\request(),[ |
||||
|
||||
'name' => 'required', |
||||
'short_description' => 'required', |
||||
'seo_title' => 'required', |
||||
'keywords'=>'required', |
||||
'image'=>'mimes:jpeg,png,jpg,svg', |
||||
|
||||
]); |
||||
$service = new VisaService(); |
||||
$service = $service->findorfail($id); |
||||
$service->name = \request('name'); |
||||
$service->short_description = \request('short_description'); |
||||
$service->seo_description = \request('seo_description'); |
||||
$service->seo_title = \request('seo_title'); |
||||
$service->keywords = \request('keywords'); |
||||
|
||||
$service->meta_keywords = \request('meta_keywords'); |
||||
$service->status = \request('status'); |
||||
$service->order_by = \request('order_by'); |
||||
$service->slug = Setting::create_slug(\request('seo_title')); |
||||
|
||||
if($request->hasFile('icon')){ |
||||
|
||||
$extension = \request()->file('icon')->getClientOriginalExtension(); |
||||
|
||||
$image_folder_type = array_search('visa_service',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('icon'),$extension,$count,$image_folder_type); |
||||
|
||||
|
||||
if (is_file(public_path().'/'.$service->icon) && file_exists(public_path().'/'.$service->icon)){ |
||||
unlink(public_path().'/'.$service->icon); |
||||
} |
||||
is_array($out_put_path) ? $service->icon = $out_put_path[0] : $service->icon = $out_put_path; |
||||
|
||||
|
||||
} |
||||
if($request->hasFile('image')){ |
||||
|
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
|
||||
$image_folder_type = array_search('visa_service',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
|
||||
|
||||
if (is_file(public_path().'/'.$service->image) && file_exists(public_path().'/'.$service->image)){ |
||||
unlink(public_path().'/'.$service->image); |
||||
} |
||||
is_array($out_put_path) ? $service->image = $out_put_path[0] : $service->image = $out_put_path; |
||||
|
||||
|
||||
} |
||||
if($service->update()){ |
||||
Session::flash('success','Visa Service has been successfully updated!'); |
||||
return redirect($this->redirect); |
||||
// $service_point = $service->service_point(); |
||||
// $service_point->delete(); |
||||
// $points = $request->points; |
||||
// foreach($points as $point){ |
||||
// $service_point = new ServicePoint(); |
||||
// $service_point->service_id = $service->id; |
||||
// $service_point->point = $point; |
||||
// $service_point->save(); |
||||
|
||||
|
||||
|
||||
|
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
/** |
||||
* Remove the specified resource from storage. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function delete($id) |
||||
{ |
||||
$setting=VisaService::findorfail($id); |
||||
if (is_file(public_path().'/'.$setting->icon) && file_exists(public_path().'/'.$setting->icon)){ |
||||
unlink(public_path().'/'.$setting->icon); |
||||
} |
||||
$setting->delete(); |
||||
Session::flash('success','Service has been sucessfully deleted!'); |
||||
return redirect($this->redirect); |
||||
//dd("here"); |
||||
} |
||||
|
||||
|
||||
public function service_point($service_point_id){ |
||||
if(Auth::user()){ |
||||
$setting = VisaServicePoint::findorfail($service_point_id); |
||||
$setting->delete(); |
||||
return response()->json(['service_point_id' => $service_point_id]); |
||||
} |
||||
|
||||
} |
||||
} |
@ -1,227 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers\Admin; |
||||
|
||||
use App\Http\Controllers\Controller; |
||||
use App\Models\VisaService; |
||||
use App\Models\VisaServiceSection; |
||||
use App\Models\VisaServiceSectionPoint; |
||||
use App\Models\Setting; |
||||
use Illuminate\Http\Request; |
||||
use App\Models\User; |
||||
use Illuminate\Support\Facades\Auth; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
class VisaServiceSectionController extends Controller |
||||
{ |
||||
/** |
||||
* Display a listing of the resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
|
||||
protected $view = 'admin.visa_service_section.'; |
||||
protected $redirect = 'admin/visa_services/{id}/sections'; |
||||
|
||||
public function index($id) |
||||
{ |
||||
$service_name = VisaService::findorfail($id)->name; |
||||
$service_section = VisaServiceSection::where('visa_service_id',$id); |
||||
|
||||
|
||||
// if(\request('name')){ |
||||
// $key = \request('name'); |
||||
// $services = $services->where('name','like','%'.$key.'%'); |
||||
// } |
||||
// if(\request('status')){ |
||||
// $key = \request('status'); |
||||
// $services = $services->where('status',$key); |
||||
// } |
||||
$service_sections = $service_section->paginate(config('custom.per_page')); |
||||
return view($this->view.'index',compact('service_sections','service_name','id')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for creating a new resource. |
||||
* |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function create($id) |
||||
{ |
||||
$service_name = VisaService::findorfail($id)->name; |
||||
return view($this->view.'create',compact('service_name','id')); |
||||
} |
||||
|
||||
/** |
||||
* Store a newly created resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function store(Request $request,$id) |
||||
{ |
||||
|
||||
|
||||
$this->validate(\request(),[ |
||||
|
||||
|
||||
'description' => 'required', |
||||
'status' => 'required', |
||||
'order_by' => 'required' |
||||
|
||||
]); |
||||
$service_section = new VisaServiceSection(); |
||||
|
||||
$service_section->title = \request('title'); |
||||
$service_section->sub_title = \request('sub_title'); |
||||
$service_section->description = (\request('description')); |
||||
$service_section->sub_description = (\request('sub_description')); |
||||
$service_section->visa_service_id = $id; |
||||
$service_section->status = \request('status'); |
||||
$service_section->order_by = \request('order_by'); |
||||
// $service->image_alt = \request('image_alt'); |
||||
// $service->slug = Setting::create_slug(\request('seo_title')); |
||||
|
||||
|
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('visa_service',config('custom.image_folders')); //for image saved in folder |
||||
// dd($image_folder_type); |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path = $out_put_path[0]; |
||||
$service_section->image = $image_path; |
||||
} |
||||
|
||||
|
||||
if($service_section->save()){ |
||||
// $points = $request->points; |
||||
// $point_descriptions = $request->point_descriptions ?? []; |
||||
// $icons = $request->icons ?? []; |
||||
|
||||
// if($points[0] != null){ |
||||
|
||||
// foreach($points as $key => $point){ |
||||
|
||||
// $service_section_point = new VisaServiceSectionPoint(); |
||||
|
||||
// $service_section_point->visa_service_section_id = $service_section->id; |
||||
|
||||
// $service_section_point->point = $point; |
||||
// $service_section_point->save(); |
||||
// } |
||||
// } |
||||
Session::flash('success','Visa Service Section has been created!'); |
||||
return redirect('admin/visa_services/'.$id.'/sections'); |
||||
|
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* Display the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function show($id,$secId) |
||||
{ |
||||
|
||||
|
||||
// $service = new Service(); |
||||
// $service_section = new ServiceSection(); |
||||
$service = VisaService::findorfail($id); |
||||
|
||||
$service_section = VisaServiceSection::findorfail($secId); |
||||
|
||||
|
||||
|
||||
return view($this->view . 'show', compact('service','service_section')); |
||||
} |
||||
|
||||
/** |
||||
* Show the form for editing the specified resource. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function edit($id,$secId) |
||||
{ |
||||
$service = new VisaService(); |
||||
$service_section = new VisaServiceSection(); |
||||
$service = $service->findorfail($id); |
||||
$service_section = $service_section->findorfail($secId); |
||||
|
||||
|
||||
|
||||
|
||||
return view($this->view . 'edit', compact('service','service_section')); |
||||
} |
||||
|
||||
/** |
||||
* Update the specified resource in storage. |
||||
* |
||||
* @param \Illuminate\Http\Request $request |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function update(Request $request, $id, $secId) |
||||
{ |
||||
$this->validate(\request(),[ |
||||
'description' => 'required', |
||||
'status' => 'required', |
||||
'order_by' => 'required' |
||||
]); |
||||
$service_section = VisaServiceSection::findOrFail($secId); |
||||
$service_section->title = \request('title'); |
||||
$service_section->sub_title = \request('sub_title'); |
||||
$service_section->description = (\request('description')); |
||||
$service_section->sub_description = (\request('sub_description')); |
||||
$service_section->visa_service_id = $id; |
||||
$service_section->status = \request('status'); |
||||
$service_section->order_by = \request('order_by'); |
||||
|
||||
if($request->hasFile('image')){ |
||||
$extension = \request()->file('image')->getClientOriginalExtension(); |
||||
$image_folder_type = array_search('service',config('custom.image_folders')); //for image saved in folder |
||||
$count = rand(100,999); |
||||
$out_put_path = User::save_image(\request('image'),$extension,$count,$image_folder_type); |
||||
$image_path = $out_put_path[0]; |
||||
if (is_file(public_path().'/'.$service_section->image) && file_exists(public_path().'/'.$service_section->image)){ |
||||
unlink(public_path().'/'.$service_section->image); |
||||
} |
||||
$service_section->image = $image_path; |
||||
} |
||||
if($service_section->update()){ |
||||
|
||||
|
||||
|
||||
Session::flash('success','Visa Service Section has been successfully updated!'); |
||||
return redirect('admin/visa_services/'.$id.'/sections'); |
||||
|
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
/** |
||||
* Remove the specified resource from storage. |
||||
* |
||||
* @param int $id |
||||
* @return \Illuminate\Http\Response |
||||
*/ |
||||
public function destroy($id) |
||||
{ |
||||
// |
||||
} |
||||
|
||||
public function service_point($service_point_id){ |
||||
|
||||
if(Auth::user()){ |
||||
$setting = ServiceSectionPoint::findorfail($service_point_id); |
||||
$setting->delete(); |
||||
return response()->json(['service_point_id' => $service_point_id]); |
||||
} |
||||
|
||||
} |
||||
} |
@ -1,145 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers; |
||||
|
||||
use Illuminate\Http\Request; |
||||
use App\Models\Appointment; |
||||
use Carbon\Carbon; |
||||
use App\Models\AppointmentBookingDetail; |
||||
|
||||
class AppointmentController extends Controller |
||||
{ |
||||
public function index(){ |
||||
|
||||
$educationAppointments = Appointment::where('date', '>=', Carbon::today())->where('service_type', '1')->get(); |
||||
$visaAppointments = Appointment::where('date', '>=', Carbon::today())->where('service_type', '2')->get(); |
||||
// foreach($educationAppointments as $appointment){ |
||||
// $startTime = Carbon::createFromFormat('H:i', $appointment->start_time); |
||||
// $date = Carbon::createFromFormat('H:i', $appointment->start_time); |
||||
// dd($date); |
||||
// } |
||||
return view('appointment', compact('educationAppointments', 'visaAppointments')); |
||||
|
||||
} |
||||
|
||||
public function get_appointment_by_date(Request $request){ |
||||
|
||||
$dateTime = $request->date; |
||||
|
||||
$date_parts = explode(" ", $dateTime); |
||||
$month_number = date_parse($date_parts[1])['month']; |
||||
$carbon = Carbon::createFromDate($date_parts[3], $month_number, $date_parts[2]); |
||||
$date = $carbon->format('Y-m-d'); |
||||
|
||||
$type_id = $request->id; |
||||
$appointments_all = Appointment::whereDate('date',$date)->where(['service_type' => $type_id,'is_booked' => false,'status' => 1])->get(); |
||||
$old_date = Carbon::createFromFormat('Y-m-d', $date); |
||||
$formated_date = $old_date->format('M d, Y'); |
||||
$currentTime = Carbon::now(); |
||||
$appointments = []; |
||||
foreach ($appointments_all as $appointment) { |
||||
$start_time = explode(" ", $appointment->start_time); |
||||
$start_time = $start_time[0]; |
||||
$appointmentDate = Carbon::createFromFormat('Y-m-d H:i', $appointment->date.' '.$start_time); |
||||
if ($appointmentDate->gt($currentTime)) { |
||||
array_push($appointments, $appointment); |
||||
} |
||||
} |
||||
|
||||
return response()->json(['appointment' => $appointments,'formated_date' => $formated_date]); |
||||
} |
||||
|
||||
public function form_submit(Request $request){ |
||||
|
||||
$request->validate([ |
||||
'name' => 'required', |
||||
'email' => 'required|email', |
||||
'phone' => 'required', |
||||
]); |
||||
$appointment_id = $request->get('appointment_id'); |
||||
|
||||
$appointment = Appointment::findorfail($appointment_id); |
||||
$appointment_detail = new AppointmentBookingDetail(); |
||||
$appointment_detail->name = $request->get('name'); |
||||
$appointment_detail->email = $request->get('email'); |
||||
$appointment_detail->phone = $request->get('phone'); |
||||
$appointment_detail->notes = $request->get('notes'); |
||||
$appointment_detail->appointment_id = $appointment_id; |
||||
$email = $request['email']; |
||||
$name = $request['name']; |
||||
$phone = $request['phone']; |
||||
|
||||
if($appointment_detail->save()){ |
||||
|
||||
$date = Carbon::createFromFormat('Y-m-d', $appointment->date); |
||||
$formated_date = $date->format('M d, Y'); |
||||
$appointment->is_booked = true; |
||||
$appointment->save(); |
||||
$subject = 'Appointment Booked Successfully.'; |
||||
dispatch(function() use ($name,$email,$phone,$subject,$formated_date,$appointment) { |
||||
|
||||
\Mail::send('appointment_confirmed', array( |
||||
|
||||
'full_name' =>$name, |
||||
|
||||
'email' =>$email, |
||||
|
||||
'date' => $formated_date, |
||||
|
||||
'start_time' => $appointment['start_time'], |
||||
|
||||
'end_time' => $appointment['end_time'], |
||||
|
||||
'phone' =>$phone, |
||||
|
||||
'subject' =>$subject |
||||
|
||||
|
||||
), function($message) use ($subject,$email,$name){ |
||||
// $subject=($service!= '') ? 'Enquiry for '.$service : 'Contact/Feedback'; |
||||
$message->subject($subject); |
||||
// $message->from('admin@eteducation.com.au', 'Admin'); |
||||
$message->to($email, $name)->subject($subject); |
||||
// $message->cc('extratechweb@gmail.com', 'Extratech')->subject($subject); |
||||
// $message->cc('admin@eteducation.com.au', 'Extratech')->subject($subject); |
||||
|
||||
}); |
||||
|
||||
|
||||
}); |
||||
|
||||
dispatch(function() use ($name,$email,$phone,$subject,$formated_date,$appointment) { |
||||
|
||||
\Mail::send('appointment_confirmed_for_admin', array( |
||||
|
||||
'full_name' =>$name, |
||||
|
||||
'email' =>$email, |
||||
|
||||
'date' => $formated_date, |
||||
|
||||
'start_time' => $appointment['start_time'], |
||||
|
||||
'end_time' => $appointment['end_time'], |
||||
|
||||
'phone' =>$phone, |
||||
|
||||
'subject' =>$subject |
||||
|
||||
), function($message) use ($subject){ |
||||
// $subject=($service!= '') ? 'Enquiry for '.$service : 'Contact/Feedback'; |
||||
$message->subject($subject); |
||||
// $message->to($email, $name)->subject($subject); |
||||
$message->to('mahesh@extratechs.com.au', 'Extratech')->subject($subject); |
||||
// $message->cc('admin@eteducation.com.au', 'Extratech')->subject($subject); |
||||
|
||||
}); |
||||
|
||||
|
||||
}); |
||||
} |
||||
|
||||
return response()->json(['appointment_detail' => $appointment_detail,'appointment' => $appointment,'formated_date' => $formated_date],200); |
||||
|
||||
} |
||||
} |
@ -1,21 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers; |
||||
|
||||
use Illuminate\Http\Request; |
||||
use App\Models\NewsAndUpdate; |
||||
use App\Models\Page; |
||||
|
||||
class BlogController extends Controller |
||||
{ |
||||
public function index(){ |
||||
$page = Page::where(['title' => 'Blogs','status' => 1])->first(); |
||||
$blogs = NewsAndUpdate::where('status',1)->get(); |
||||
return view('blogs',compact('blogs','page')); |
||||
} |
||||
|
||||
public function blog_detail($slug){ |
||||
$blog = NewsAndUpdate::where(['slug' => $slug, 'status' => 1])->first(); |
||||
return view('blog-detail',compact('blog')); |
||||
} |
||||
} |
@ -1,64 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers; |
||||
|
||||
use Illuminate\Http\Request; |
||||
use App\Models\Contact; |
||||
use App\Models\Page; |
||||
|
||||
class ContactController extends Controller |
||||
{ |
||||
public function index(){ |
||||
$page = Page::where(['title' => 'Contact Us','status' => 1])->first(); |
||||
return view('contact',compact('page')); |
||||
} |
||||
|
||||
public function post_contact(Request $request){ |
||||
|
||||
$contact = new Contact(); |
||||
$subject = 'Contact Enquiry'; |
||||
// $check = ''; |
||||
// if(isset($request['firstname'])){ |
||||
// $subject = 'Quick Enquiry'; |
||||
// $check = '1'; |
||||
// } |
||||
// $name = ($request['firstname'] != null) ? ($request['firstname'].' '.$request['lastname']) : $request['fullname'] ; |
||||
|
||||
$contact->fullname = $request['full_name']; |
||||
$contact->email = $request['email']; |
||||
$contact->phone = $request['phone']; |
||||
$contact->message = $request['message']; |
||||
$contact->nationality = $request['nationality']; |
||||
|
||||
$contact->save(); |
||||
|
||||
// dispatch(function() use ($check,$subject, $contact) { |
||||
\Mail::send('contact_mail', array( |
||||
|
||||
'full_name' =>$request['full_name'], |
||||
|
||||
'email' =>$request['email'], |
||||
|
||||
'phone' =>$request['phone'], |
||||
|
||||
'nationality' =>$request['nationality'], |
||||
|
||||
'contact_message' =>$request['message'], |
||||
|
||||
'subject' =>$subject |
||||
|
||||
|
||||
), function($message) use ($subject){ |
||||
// $subject=($service!= '') ? 'Enquiry for '.$service : 'Contact/Feedback'; |
||||
$message->subject($subject); |
||||
$message->to('admin@eteducation.com.au', 'Et-Visa')->subject($subject); |
||||
$message->cc('extratechweb@gmail.com', 'Extratech')->subject($subject); |
||||
$message->cc('suman@extratechs.com.au', 'Extratech')->subject($subject); |
||||
|
||||
}); |
||||
// }); |
||||
// return redirect()->back()->with(['msg' => 'Successfully submitted.']); |
||||
return redirect()->back()->with(['msg' => 'Thank you for your interest. We will get back to you soon.','status' =>'Ok'],200); |
||||
|
||||
} |
||||
} |
@ -1,76 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers; |
||||
|
||||
use App\Jobs\SendEnquiryMailJob; |
||||
use App\Models\Country; |
||||
use App\Models\Enquiry; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\DB; |
||||
use Illuminate\Support\Facades\Session; |
||||
|
||||
|
||||
|
||||
class EnquiryController extends Controller |
||||
{ |
||||
public function form() |
||||
{ |
||||
$countries = Country::all(); |
||||
return view('enquiry-form', compact('countries')); |
||||
} |
||||
|
||||
public function submit(Request $request) |
||||
{ |
||||
$work_experience = $request->get('work_experience'); |
||||
if ($work_experience == 'no') { |
||||
$request['work_experience_details'] = null; |
||||
$request['salary_mode'] = null; |
||||
} |
||||
$marital_status = $request->get('marital_status'); |
||||
if ($marital_status == 'Widow' || $marital_status == 'Single') { |
||||
$request['married_date'] = null; |
||||
$request['spouse_academics'] = null; |
||||
$request['spouse_work_experience'] = null; |
||||
$request['spouse_salary_mode'] = null; |
||||
} |
||||
DB::beginTransaction(); |
||||
try { |
||||
$enquiry = Enquiry::create($request->all()); |
||||
} catch (\Exception $e) { |
||||
DB::rollback(); |
||||
return redirect()->back()->with(['msg' => 'Something went wrong. Please try again!', 'status' => false], 400); |
||||
} |
||||
DB::commit(); |
||||
dispatch(new SendEnquiryMailJob($enquiry)); |
||||
return redirect()->back()->with(['msg' => 'We have recieved your enquiry. You will be contacted soon!', 'status' => true], 200); |
||||
} |
||||
|
||||
public function index() |
||||
{ |
||||
|
||||
$enquiries = Enquiry::orderBy('id', 'DESC'); |
||||
if (\request('name')) { |
||||
$key = \request('name'); |
||||
$enquiries = $enquiries->where('first_name', 'like', $key . '%'); |
||||
} |
||||
if (\request('email')) { |
||||
$key = \request('email'); |
||||
$enquiries = $enquiries->where('email', 'like', $key . '%'); |
||||
} |
||||
$enquiries = $enquiries->paginate(30); |
||||
return view('admin.enquiry.index', compact('enquiries')); |
||||
} |
||||
|
||||
public function show($id) |
||||
{ |
||||
$enquiry = Enquiry::findorfail($id); |
||||
return view('admin.enquiry.show', compact('enquiry')); |
||||
} |
||||
public function delete($id) |
||||
{ |
||||
$enquiry = Enquiry::findorfail($id); |
||||
$enquiry->delete(); |
||||
Session::flash('success', 'Enquiry has been successfully deleted!'); |
||||
return redirect('admin/enquiries'); |
||||
} |
||||
} |
@ -1,16 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers; |
||||
|
||||
use Illuminate\Http\Request; |
||||
use App\Models\Faq; |
||||
use App\Models\Page; |
||||
|
||||
class FaqController extends Controller |
||||
{ |
||||
public function index(){ |
||||
$page = Page::where(['title' => 'FAQ','status' => 1])->first(); |
||||
$faqs = Faq::where('status',true)->get(); |
||||
return view('faq',compact('faqs','page')); |
||||
} |
||||
} |
@ -1,59 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers; |
||||
|
||||
use Illuminate\Http\Request; |
||||
use App\Models\Slider; |
||||
use App\Models\Testimonial; |
||||
use App\Models\NewsAndUpdate; |
||||
use App\Models\Subscription; |
||||
use App\Models\AboutUs; |
||||
use Illuminate\Support\Facades\Artisan; |
||||
use Database\Seeders\AppointmentTableSeeder; |
||||
|
||||
class HomeController extends Controller |
||||
{ |
||||
public function runSeeder(){ |
||||
Artisan::call('db:seed', ['--class' => AppointmentTableSeeder::class]); |
||||
} |
||||
public function runQueueJobs(){ |
||||
Artisan::call('queue:listen'); |
||||
} |
||||
public function index(){ |
||||
|
||||
$sliders = Slider::where('status',1)->get(); |
||||
$testimonials = Testimonial::where('status',1)->get(); |
||||
$blogs = NewsAndUpdate::where('status',1)->get(); |
||||
$about_us = AboutUs::where('status',1)->get(); |
||||
return view('welcome',compact('sliders','testimonials','blogs','about_us')); |
||||
} |
||||
public function subscribe(Request $request) |
||||
{ |
||||
|
||||
$email = $request->email; |
||||
$subscription = new Subscription(); |
||||
$subscription->email = $email; |
||||
$subscription->save(); |
||||
|
||||
|
||||
\Mail::send('subscribe_mail', array( |
||||
|
||||
|
||||
'email' =>\request('email'), |
||||
|
||||
|
||||
'subject' => 'Subscription Notice', |
||||
|
||||
), function($message) use ($request){ |
||||
$subject = 'Subscription Notice'; |
||||
$message->subject('Subscription Notice'); |
||||
|
||||
$message->to('admin@eteducation.com.au', 'Et-Visa')->subject($subject); |
||||
$message->cc('extratechweb@gmail.com', 'Extratech')->subject($subject); |
||||
$message->cc('suman@extratechs.com.au', 'Extratech')->subject($subject); |
||||
|
||||
|
||||
}); |
||||
return response()->json(['success' => 'Thank You for Subscribing !','status' =>'Ok'],200); |
||||
} |
||||
} |
@ -1,26 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers; |
||||
|
||||
use Illuminate\Http\Request; |
||||
|
||||
class ImageUploadController extends Controller |
||||
{ |
||||
public function storeImage(Request $request) |
||||
{ |
||||
if ($request->hasFile('upload')) { |
||||
$finfo = finfo_open(FILEINFO_MIME_TYPE); // Return MIME type a la the 'mimetype' extension |
||||
$mimeType = finfo_file($finfo, $request->file('upload')); |
||||
finfo_close($finfo); |
||||
if ($mimeType == 'image/jpeg' || $mimeType == 'image/png' || $mimeType == 'image/svg+xml' || $mimeType == 'image/gif' || $mimeType == 'image/webp') { |
||||
$originName = $request->file('upload')->getClientOriginalName(); |
||||
$fileName = pathinfo($originName, PATHINFO_FILENAME); |
||||
$extension = $request->file('upload')->getClientOriginalExtension(); |
||||
$fileName = $fileName . '_' . time() . '.' . $extension; |
||||
$request->file('upload')->move(public_path('images/media'), $fileName); |
||||
$url = asset('images/media/' . $fileName); |
||||
return response()->json(['fileName' => $fileName, 'uploaded'=> 1, 'url' => $url]); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -1,21 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers; |
||||
|
||||
use Illuminate\Http\Request; |
||||
use App\Models\Service; |
||||
use App\Models\Page; |
||||
|
||||
class StudyAbroadController extends Controller |
||||
{ |
||||
public function study_abroad(){ |
||||
$page = Page::where(['title' => 'Study Abroad','status' => 1])->first(); |
||||
$services = Service::with('service_sections')->get(); |
||||
return view('study-abroad',compact('services','page')); |
||||
} |
||||
|
||||
public function details($slug){ |
||||
$service = Service::where(['slug' => $slug,'status' => 1])->orderby('order_by','asc')->first(); |
||||
return view('study-abroad-detail',compact('service')); |
||||
} |
||||
} |
@ -1,25 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Http\Controllers; |
||||
|
||||
use Illuminate\Http\Request; |
||||
use App\Models\VisaService; |
||||
use App\Models\Page; |
||||
|
||||
class VisaController extends Controller |
||||
{ |
||||
|
||||
public function index() |
||||
{ |
||||
$page = Page::where(['title' => 'Visa', 'status' => 1])->first(); |
||||
$visas = VisaService::where('status', 1)->get(); |
||||
return view('visa', compact('visas', 'pages')); |
||||
} |
||||
public function details($slug) |
||||
{ |
||||
$page = Page::where(['title' => 'Visa', 'status' => 1])->first(); |
||||
$visas = VisaService::where('status', 1)->get(); |
||||
$service = VisaService::where(['slug' => $slug, 'status' => 1])->orderby('order_by', 'asc')->first(); |
||||
return view('visa', compact('service', 'page', 'visas')); |
||||
} |
||||
} |
@ -1,41 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Jobs; |
||||
|
||||
use App\Mail\EnquiryMail; |
||||
use App\Models\Setting; |
||||
use Illuminate\Bus\Queueable; |
||||
use Illuminate\Contracts\Queue\ShouldBeUnique; |
||||
use Illuminate\Contracts\Queue\ShouldQueue; |
||||
use Illuminate\Foundation\Bus\Dispatchable; |
||||
use Illuminate\Queue\InteractsWithQueue; |
||||
use Illuminate\Queue\SerializesModels; |
||||
use Illuminate\Support\Facades\Mail; |
||||
|
||||
class SendEnquiryMailJob implements ShouldQueue |
||||
{ |
||||
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||||
|
||||
/** |
||||
* Create a new job instance. |
||||
* |
||||
* @return void |
||||
*/ |
||||
protected $enquiry; |
||||
public function __construct($enquiry) |
||||
{ |
||||
$this->enquiry = $enquiry; |
||||
} |
||||
|
||||
/** |
||||
* Execute the job. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function handle() |
||||
{ |
||||
$email = Setting::where('key', 'email')->get('value')->first()->value; |
||||
|
||||
Mail::to($email)->send(new EnquiryMail($this->enquiry)); |
||||
} |
||||
} |
@ -1,65 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Mail; |
||||
|
||||
use Illuminate\Bus\Queueable; |
||||
use Illuminate\Contracts\Queue\ShouldQueue; |
||||
use Illuminate\Mail\Mailable; |
||||
use Illuminate\Mail\Mailables\Content; |
||||
use Illuminate\Mail\Mailables\Envelope; |
||||
use Illuminate\Queue\SerializesModels; |
||||
|
||||
class EnquiryMail extends Mailable |
||||
{ |
||||
use Queueable, SerializesModels; |
||||
|
||||
/** |
||||
* Create a new message instance. |
||||
* |
||||
* @return void |
||||
* |
||||
*/ |
||||
protected $enquiry; |
||||
|
||||
public function __construct($enquiry) |
||||
{ |
||||
$this->enquiry = $enquiry; |
||||
} |
||||
|
||||
/** |
||||
* Get the message envelope. |
||||
* |
||||
* @return \Illuminate\Mail\Mailables\Envelope |
||||
*/ |
||||
public function envelope() |
||||
{ |
||||
return new Envelope( |
||||
subject: 'Enquiry Mail', |
||||
); |
||||
} |
||||
|
||||
/** |
||||
* Get the message content definition. |
||||
* |
||||
* @return \Illuminate\Mail\Mailables\Content |
||||
*/ |
||||
public function content() |
||||
{ |
||||
return new Content( |
||||
view: 'enquiry_mail', |
||||
with: [ |
||||
'enquiry' => $this->enquiry, |
||||
], |
||||
); |
||||
} |
||||
|
||||
/** |
||||
* Get the attachments for the message. |
||||
* |
||||
* @return array |
||||
*/ |
||||
public function attachments() |
||||
{ |
||||
return []; |
||||
} |
||||
} |
@ -1,17 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class AboutUs extends Model |
||||
{ |
||||
use HasFactory; |
||||
protected $table = "about_us"; |
||||
|
||||
public function about_us_points() |
||||
{ |
||||
return $this->hasMany(AboutUsPoint::class); |
||||
} |
||||
} |
@ -1,17 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class AboutUsPoint extends Model |
||||
{ |
||||
use HasFactory; |
||||
protected $table = "about_us_points"; |
||||
|
||||
public function about_us() |
||||
{ |
||||
return $this->belongsto(AboutUs::class); |
||||
} |
||||
} |
@ -1,31 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Accomodation extends Model |
||||
{ |
||||
use HasFactory; |
||||
protected $fillable=['title','slider_image','status','address','phone','email','website']; |
||||
|
||||
public function accommodation_features() |
||||
{ |
||||
return $this->hasMany(AccomodationFeature::class); |
||||
} |
||||
|
||||
public function accommodation_slider_titles() |
||||
{ |
||||
return $this->hasMany(AccomodationSliderTitle::class); |
||||
} |
||||
|
||||
public function accommodation_informations() |
||||
{ |
||||
return $this->hasMany(AccomodationInformation::class); |
||||
} |
||||
public function accommodation_images() |
||||
{ |
||||
return $this->hasMany(AccomodationImage::class); |
||||
} |
||||
} |
@ -1,11 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class AccomodationFeature extends Model |
||||
{ |
||||
use HasFactory; |
||||
} |
@ -1,11 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class AccomodationImage extends Model |
||||
{ |
||||
use HasFactory; |
||||
} |
@ -1,12 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class AccomodationInformation extends Model |
||||
{ |
||||
use HasFactory; |
||||
protected $table = 'accomodation_informations'; |
||||
} |
@ -1,12 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class AccomodationSliderTitle extends Model |
||||
{ |
||||
use HasFactory; |
||||
protected $table = 'accomodation_slider_titles'; |
||||
} |
@ -1,16 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Applicant extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
public function applicant_service(){ |
||||
|
||||
return $this->hasMany(ApplicantService::class); |
||||
} |
||||
} |
@ -1,13 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class ApplicantService extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
protected $table = "applicant_service"; |
||||
} |
@ -1,17 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Appointment extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
protected $guarded = ['id']; |
||||
|
||||
public function appointment_booking_detail(){ |
||||
return $this->hasOne(AppointmentBookingDetail::class); |
||||
} |
||||
} |
@ -1,15 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class AppointmentBookingDetail extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
public function appointment(){ |
||||
return $this->belongsTo(Appointment::class); |
||||
} |
||||
} |
@ -1,15 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Career extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
public function career_points(){ |
||||
return $this->hasMany(CareerPoint::class); |
||||
} |
||||
} |
@ -1,11 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class CareerPoint extends Model |
||||
{ |
||||
use HasFactory; |
||||
} |
@ -1,17 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Contact extends Model |
||||
{ |
||||
use HasFactory; |
||||
protected $fillable = ['fullname', 'email', 'service_id', 'phone', 'message', 'status', 'created_at']; |
||||
|
||||
public function service() |
||||
{ |
||||
return $this->belongsto(Service::class); |
||||
} |
||||
} |
@ -1,11 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Country extends Model |
||||
{ |
||||
use HasFactory; |
||||
} |
@ -1,13 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Enquiry extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
protected $guarded = ['id']; |
||||
} |
@ -1,12 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Faq extends Model |
||||
{ |
||||
use HasFactory; |
||||
protected $guarded = ['id']; |
||||
} |
@ -1,13 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Gallery extends Model |
||||
{ |
||||
use HasFactory; |
||||
protected $fillable=['slug','point_title','blog_type','image','image_alt','description','seo_title','seo_description','middle_description','bottom_description','keyword','meta_keyword','status','publish_date','title','image_credit','author','image_caption']; |
||||
|
||||
} |
@ -1,17 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class NewsAndUpdate extends Model |
||||
{ |
||||
use HasFactory; |
||||
protected $fillable=['slug','type','point_title','blog_type','image','image_alt','description','seo_title','seo_description','middle_description','bottom_description','keyword','meta_keyword','status','publish_date','title','image_credit','author','image_caption','thumbnail']; |
||||
|
||||
public function news_and_update_points() |
||||
{ |
||||
return $this->hasMany(NewsAndUpdatePoint::class,'news_and_update_id'); |
||||
} |
||||
} |
@ -1,11 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class NewsAndUpdatePoint extends Model |
||||
{ |
||||
use HasFactory; |
||||
} |
@ -1,13 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Page extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
protected $guarded = ['id']; |
||||
} |
@ -1,11 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Recruitment extends Model |
||||
{ |
||||
use HasFactory; |
||||
} |
@ -1,16 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Referral extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
public function referral_services() |
||||
{ |
||||
return $this->hasMany(ReferralService::class,'referral_id'); |
||||
} |
||||
} |
@ -1,13 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class ReferralService extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
|
||||
} |
@ -1,12 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class SeoTitle extends Model |
||||
{ |
||||
use HasFactory; |
||||
protected $fillable = ['seo_title','seo_type','seo_description','keyword','meta_keyword','status']; |
||||
} |
@ -1,15 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Service extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
public function service_sections(){ |
||||
return $this->hasMany(ServiceSection::class); |
||||
} |
||||
} |
@ -1,18 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class ServiceSection extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
public function service(){ |
||||
return $this->belongsTo(Service::class); |
||||
} |
||||
public function service_section_point(){ |
||||
return $this->hasMany(ServiceSectionPoint::class); |
||||
} |
||||
} |
@ -1,16 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class ServiceSectionPoint extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
public function service_section() |
||||
{ |
||||
return $this->belongsTo(ServiceSection::class); |
||||
} |
||||
} |
@ -1,60 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Setting extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
protected $fillable =['key','value','type','slug','status']; |
||||
|
||||
public function setting_alt() |
||||
{ |
||||
return $this->hasOne(SettingImageAlt::class,'setting_id'); |
||||
} |
||||
public static function value($kay) |
||||
{ |
||||
|
||||
if ($setting = Setting::select('value')->where('slug',$kay)->where('status','1')->first()){ |
||||
return $setting->value; |
||||
} |
||||
else{ |
||||
return ''; |
||||
} |
||||
} |
||||
public static function key($kay) |
||||
{ |
||||
if ($setting = Setting::select('key')->where('slug',$kay)->where('status','1')->first()){ |
||||
return $setting->key; |
||||
} |
||||
else{ |
||||
return ''; |
||||
} |
||||
} |
||||
|
||||
public static function create_slug($string) |
||||
{ |
||||
$replace = '-'; |
||||
|
||||
$string = strtolower($string); |
||||
|
||||
// replace / and . with white space |
||||
$string = preg_replace("/[\/\.]/"," ",$string); |
||||
$string = preg_replace("/[^a-z0-9\s-]/","",$string); |
||||
|
||||
// remove multiple dashes or whitespace |
||||
$string = preg_replace("/[\s-]+/"," ",$string); |
||||
|
||||
// convert whitespaces and underscore to $replace |
||||
$string = preg_replace("/[\s_]/",$replace,$string); |
||||
|
||||
// limit the string size |
||||
$string = substr($string,0,100); |
||||
|
||||
// slug is generated |
||||
return $string; |
||||
} |
||||
} |
@ -1,13 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class SettingImageAlt extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
|
||||
} |
@ -1,11 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Slider extends Model |
||||
{ |
||||
use HasFactory; |
||||
} |
@ -1,11 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Subscription extends Model |
||||
{ |
||||
use HasFactory; |
||||
} |
@ -1,11 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class SupportCoordination extends Model |
||||
{ |
||||
use HasFactory; |
||||
} |
@ -1,12 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Team extends Model |
||||
{ |
||||
use HasFactory; |
||||
protected $fillable=['image','team_name','address','email','mobile_no','address','designation','status','created_at','update_at']; |
||||
} |
@ -1,12 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class Testimonial extends Model |
||||
{ |
||||
protected $fillable = ['image','heading','title','author_name','author_designation','review','status']; |
||||
use HasFactory; |
||||
} |
@ -1,15 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class VisaService extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
public function visa_service_sections(){ |
||||
return $this->hasMany(VisaServiceSection::class); |
||||
} |
||||
} |
@ -1,18 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class VisaServiceSection extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
public function visa_service(){ |
||||
return $this->belongsTo(VisaService::class); |
||||
} |
||||
public function visa_service_section_point(){ |
||||
return $this->hasMany(VisaServiceSectionPoint::class); |
||||
} |
||||
} |
@ -1,16 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class VisaServiceSectionPoint extends Model |
||||
{ |
||||
use HasFactory; |
||||
|
||||
public function visa_service_section() |
||||
{ |
||||
return $this->belongsTo(VisaServiceSection::class); |
||||
} |
||||
} |
@ -1,94 +0,0 @@ |
||||
<?php |
||||
return [ |
||||
'status' =>[ |
||||
'1'=> 'Active', |
||||
'2'=> 'DeActive' |
||||
], |
||||
'setting_types'=>[ |
||||
'1'=>'Sentence', |
||||
'2'=>'Paragraph', |
||||
'3'=>'Image' |
||||
], |
||||
'blog_types'=>[ |
||||
|
||||
'1'=>'Featured', |
||||
'2'=>'Not Featured', |
||||
|
||||
], |
||||
'states' =>[ |
||||
'1'=> 'Queensland', |
||||
'2'=> 'South Australia', |
||||
'3' => 'Tasmania', |
||||
'4' => 'Victoria', |
||||
'5' => 'Western Australia', |
||||
'6' => 'Northern Territory', |
||||
'7' => 'Australian Capital Territory', |
||||
'8' => 'New South Wales' |
||||
|
||||
], |
||||
'career_areas' => [ |
||||
|
||||
'1' => 'Support Workers', |
||||
'2' => 'Support Coordination', |
||||
'3' => 'Plan Management', |
||||
'4' => 'Administration and Management' |
||||
], |
||||
|
||||
'faqs_types' =>[ |
||||
'1' => 'Service', |
||||
'2' => 'Academy' |
||||
], |
||||
'image_folders'=>[ |
||||
'1' =>'setting', |
||||
'2' =>'about_us', |
||||
'3'=>'service', |
||||
'4'=>'slider', |
||||
'5' => 'team', |
||||
'6' => 'news_and_update', |
||||
'7'=>'gallery', |
||||
'8'=>'ndis_plan', |
||||
'9' => 'testimonial', |
||||
'10' => 'visa_service', |
||||
'11'=>'applicant', |
||||
'12'=>'page' |
||||
|
||||
], |
||||
'service_type' => [ |
||||
'1' => 'Education', |
||||
'2' => 'Visa' |
||||
], |
||||
'course_types'=>[ |
||||
'1' =>'Upcoming Courses', |
||||
'2' =>'Recommended Courses', |
||||
// '3'=>'Trending Courses', |
||||
], |
||||
'query_types'=>[ |
||||
'1' =>'Contact Us', |
||||
'2' =>'Quick In Query', |
||||
], |
||||
'ndis_plan'=>[ |
||||
'1' =>'Self Managed', |
||||
'2' =>'Agency Managed', |
||||
'3' => 'Plan Managed' |
||||
], |
||||
'contact_us_types'=>[ |
||||
'1' =>'Course', |
||||
'2' =>'Service', |
||||
], |
||||
'trending_courses'=>[ |
||||
'1' =>'Yes', |
||||
'2' =>'No', |
||||
], |
||||
'seo_types'=>[ |
||||
'1' =>'Project', |
||||
'2' =>'Academy', |
||||
'3'=>'Blog', |
||||
'4'=>'Contact', |
||||
'5' => 'Home', |
||||
'6'=> 'About', |
||||
'7' => 'Faq' |
||||
], |
||||
'file_dir'=>'storage_new', |
||||
'domain_suffix' =>'np', |
||||
'per_page' =>10, |
||||
]; |
@ -1,38 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class CreateSlidersTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::create('sliders', function (Blueprint $table) { |
||||
$table->id(); |
||||
$table->string('title1'); |
||||
$table->string('title2')->nullable(); |
||||
$table->longText('description'); |
||||
$table->string('image')->nullable(); |
||||
$table->string('image_alt')->nullable(); |
||||
$table->string('link'); |
||||
$table->enum('status',['1','2']); |
||||
$table->timestamps(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::dropIfExists('sliders'); |
||||
} |
||||
} |
@ -1,47 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class CreateServicesTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::create('services', function (Blueprint $table) { |
||||
$table->id(); |
||||
$table->string('name'); |
||||
// $table->string('image_title'); |
||||
// $table->string('image'); |
||||
// $table->string('description_title'); |
||||
// $table->string('image_description'); |
||||
// $table->longText('top_description'); |
||||
// $table->longText('bottom_description'); |
||||
// $table->string('point_title'); |
||||
$table->string('seo_title'); |
||||
$table->longText('seo_description')->nullable(); |
||||
$table->string('keywords'); |
||||
$table->longText('meta_keywords'); |
||||
$table->enum('status',[1,2]); |
||||
// $table->string('image_alt')->nullable(); |
||||
$table->string('order_by'); |
||||
$table->string('slug'); |
||||
$table->timestamps(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::dropIfExists('services'); |
||||
} |
||||
} |
@ -1,34 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class CreateServicePointsTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::create('service_points', function (Blueprint $table) { |
||||
$table->id(); |
||||
$table->bigInteger('service_id')->unsigned(); |
||||
$table->foreign('service_id')->references('id')->on('services')->onDelete('cascade'); |
||||
$table->string('point'); |
||||
$table->timestamps(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::dropIfExists('service_points'); |
||||
} |
||||
} |
@ -1,50 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class CreateNewsAndUpdatesTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::create('news_and_updates', function (Blueprint $table) { |
||||
$table->id(); |
||||
$table->integer('blog_type'); |
||||
$table->string('image'); |
||||
$table->string('image_alt'); |
||||
$table->longText('description'); |
||||
$table->longText('middle_description')->nullable(); |
||||
$table->longText('bottom_description')->nullable(); |
||||
$table->string('seo_title')->nullable(); |
||||
$table->longText('seo_description')->nullable(); |
||||
$table->string('keyword'); |
||||
$table->string('slug'); |
||||
$table->longText('meta_keyword')->nullable(); |
||||
$table->enum('status',['1','2']); // 1 for active , 2 for de-active |
||||
$table->date('publish_date'); |
||||
$table->string('title'); |
||||
$table->string('point_title')->nullable(); |
||||
$table->string('image_credit')->nullable(); |
||||
$table->string('author')->nullable(); |
||||
$table->string('image_caption')->nullable(); |
||||
$table->enum('type',['1','2']); //1 for blog, 2 for featured bogs |
||||
$table->timestamps(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::dropIfExists('news_and_updates'); |
||||
} |
||||
} |
@ -1,34 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class CreateNewsAndUpdatePointsTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::create('news_and_update_points', function (Blueprint $table) { |
||||
$table->id(); |
||||
$table->bigInteger('news_and_update_id')->unsigned(); |
||||
$table->foreign('news_and_update_id')->references('id')->on('news_and_updates'); |
||||
$table->string('point'); |
||||
$table->timestamps(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::dropIfExists('news_and_update_points'); |
||||
} |
||||
} |
@ -1,38 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class CreateTestimonialsTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::create('testimonials', function (Blueprint $table) { |
||||
$table->id(); |
||||
$table->string('image'); |
||||
$table->string('heading')->nullable(); |
||||
$table->string('title')->nullable(); |
||||
$table->string('author_name'); |
||||
$table->string('author_designation'); |
||||
$table->longText('review'); |
||||
$table->enum('status',['1','2']); |
||||
$table->timestamps(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::dropIfExists('testimonials'); |
||||
} |
||||
} |
@ -1,37 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class CreateSeoTitlesTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::create('seo_titles', function (Blueprint $table) { |
||||
$table->id(); |
||||
$table->integer('seo_type'); |
||||
$table->string('seo_title')->nullable(); |
||||
$table->longText('seo_description')->nullable(); |
||||
$table->string('keyword')->nullable(); |
||||
$table->longText('meta_keyword')->nullable(); |
||||
$table->enum('status',[1,2]); |
||||
$table->timestamps(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::dropIfExists('seo_titles'); |
||||
} |
||||
} |
@ -1,40 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class CreateServiceSectionsTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::create('service_sections', function (Blueprint $table) { |
||||
$table->id(); |
||||
$table->bigInteger('service_id')->unsigned(); |
||||
$table->foreign('service_id')->references('id')->on('services')->onDelete('cascade'); |
||||
$table->string('image')->nullable(); |
||||
$table->string('title'); |
||||
$table->string('sub_title')->nullable(); |
||||
$table->longText('description'); |
||||
$table->longText('sub_description')->nullable(); |
||||
$table->enum('status',[1,2]); |
||||
$table->string('order_by'); |
||||
$table->timestamps(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::dropIfExists('service_sections'); |
||||
} |
||||
} |
@ -1,34 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class CreateServiceSectionPointsTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::create('service_section_points', function (Blueprint $table) { |
||||
$table->id(); |
||||
$table->bigInteger('service_section_id')->unsigned(); |
||||
$table->foreign('service_section_id')->references('id')->on('service_sections')->onDelete('cascade'); |
||||
$table->string('point'); |
||||
$table->timestamps(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::dropIfExists('service_section_points'); |
||||
} |
||||
} |
@ -1,33 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class AddShortDescriptionToServicesTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::table('services', function (Blueprint $table) { |
||||
$table->longText('short_description'); |
||||
$table->string('icon')->nullable(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::table('services', function (Blueprint $table) { |
||||
// |
||||
}); |
||||
} |
||||
} |
@ -1,35 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class CreateAboutUsTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::create('about_us', function (Blueprint $table) { |
||||
$table->id(); |
||||
$table->string('image'); |
||||
$table->string('title')->nullable(); |
||||
$table->longText('description'); |
||||
$table->longText('sub_description')->nullable(); |
||||
$table->timestamps(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::dropIfExists('about_us'); |
||||
} |
||||
} |
@ -1,34 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class CreateAboutUsPointsTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::create('about_us_points', function (Blueprint $table) { |
||||
$table->id(); |
||||
$table->bigInteger('about_us_id')->unsigned(); |
||||
$table->foreign('about_us_id')->references('id')->on('about_us'); |
||||
$table->string('point'); |
||||
$table->timestamps(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::dropIfExists('about_us_points'); |
||||
} |
||||
} |
@ -1,37 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class AddSeoFieldsToAboutUsTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::table('about_us', function (Blueprint $table) { |
||||
$table->string('seo_title')->nullable(); |
||||
$table->longText('seo_description')->nullable(); |
||||
$table->string('keyword'); |
||||
$table->string('slug'); |
||||
$table->longText('meta_keyword')->nullable(); |
||||
$table->enum('status',['1','2']); // 1 for active , 2 for de-active |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::table('about_us', function (Blueprint $table) { |
||||
// |
||||
}); |
||||
} |
||||
} |
@ -1,38 +0,0 @@ |
||||
<?php |
||||
|
||||
use Illuminate\Database\Migrations\Migration; |
||||
use Illuminate\Database\Schema\Blueprint; |
||||
use Illuminate\Support\Facades\Schema; |
||||
|
||||
class CreateTeamsTable extends Migration |
||||
{ |
||||
/** |
||||
* Run the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function up() |
||||
{ |
||||
Schema::create('teams', function (Blueprint $table) { |
||||
$table->id(); |
||||
$table->string('team_name'); |
||||
$table->string('email')->unique()->nullable(); |
||||
$table->string('mobile_no')->nullable(); |
||||
$table->string('address')->nullable(); |
||||
$table->string('image'); |
||||
$table->string('designation'); |
||||
$table->enum('status',[1,2]); |
||||
$table->timestamps(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* Reverse the migrations. |
||||
* |
||||
* @return void |
||||
*/ |
||||
public function down() |
||||
{ |
||||
Schema::dropIfExists('teams'); |
||||
} |
||||
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue