Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/home/seach page #405

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Feat/home/seach page #405

wants to merge 4 commits into from

Conversation

ttc007
Copy link
Collaborator

@ttc007 ttc007 commented May 30, 2017

No description provided.


class SeachController extends Controller
{
public function seach(Request $request)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use method index

$key = $request['key'];
$products = [];
foreach (Product::all() as $product) {
if (strpos($product->name, $key) > 0) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

write new method for Product -> search()
use where('name', 'like', '%' . $keywork . '%')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants